Skip to main content

CoolClock

The CoolClock widget renders amazing analog clocks as Real-Time widgets. Supports several skins, logarithmic scale, and several properties to configure the tick delay or hide the second’s hand.

Code Example

When using a CoolClock you need to decide on a ClockType and whether to ShowDigital. or not.
You can further customize it by selecting the Skin.

coolClock1.ClockType = Wisej.Web.Ext.CoolClock.CoolClockType.Standard;
coolClock1.ShowDigital = true;
coolClock1.Skin = Wisej.Web.Ext.CoolClock.CoolClockSkin.Fancy;

The above code results in a clock that looks like this:

How to Use

The CoolClock extension can be added to a Wisej.NET project using NuGet Package Manager.

warning

You can theme the CoolClock using its Appearance Key "coolclock".

info

See an example in C# or in VB.NET.