See Also: TimePicker Members
The visual representation of a TimePicker is very similar to the one of Xamarin.Forms.Entry, except that a special control for picking a time appears in place of a keyboard.
The following example shows declaration of a TimePicker with a default time set.
C# Example
var beeroclock = new TimePicker () { Time = new TimeSpan (17,0,0) };
