Hi Stan,
Thank you for contacting Syncfusion Support.
Yes, Syncfusion Clock control can be used as Count Clock, and this can be achieved by using its properties named “StopTimer”, “CustomTime”, and “ShowCustomTimeClock”. Please make use of the below code snippet to achieve your requirement.
Code Snippet: [C#]
//To show the custom time this.clock1.ShowCustomTimeClock = true; // To hide Dates in Digital Clock this.clock1.DisplayDates = false; //To set the Custom time / Reset the clock this.clock1.CustomTime = new DateTime(); // To Freeze and Un Freeze the Clock this.clock1.StopTimer = true; |
Screenshot
We have also prepared a sample for your reference, and it can be downloaded from:
Kindly check the above solution and let us know if it was helpful.
Regards
Kannan