Getting Started with WinUI TimePicker
This tutorial will walk you through the creation of a sample application that contains RadTimePicker.
Assembly References
In order to use RadTimePicker control in your projects you have to add references to the following assemblies:
- Telerik.WinUI.Controls.dll
Defining a RadTimePicker
You can access the RadTimePicker control through an alias pointing to the Telerik.UI.Xaml.Controls.Input namespace: xmlns:input="using:Telerik.UI.Xaml.Controls.Input"
Example 1: Adding a RadTimePicker in XAML
<Grid>
<input:RadTimePicker Width="300"/>
</Grid>