For a .NET (Winforms) application are there any flip clock controls?
Ideally it would look something like the one found on the BlackBerry Bold:
UPDATE 1:
Following this SO link I have added an element host to my project to host the WPF retroclock that @Shane mentioned.
UPDATE 2:
A few steps that I followed:
- Compile RetroClock
- Add DLL reference to WinForm App
- Add 'using WPFControls.Clocks;'
- Add 'elementHost' to Form
In Form Load event add:
//create retroclock
RetroClock rc = new RetroClock();
//add retroclock to element host
elementHost1.Child = rc;
UPDATE 3:
Styling the clock
//style clock
rc.Height = 30;
rc.IncludeLeadingZero = true;
rc.IsAmPmVisible = true;
rc.FontSize = 60;
rc.HorizontalAlignment = System.Windows.HorizontalAlignment.Center;
rc.TimeFormat = TimeFormats.Hour12;