Getting Started with WinUI DatePicker
This tutorial will walk you through the creation of a sample application that contains RadDatePicker.
Assembly References
In order to use RadDatePicker control in your projects you have to add references to the following assemblies:
- Telerik.WinUI.Controls.dll
Defining a RadDatePicker
You can access the RadDatePicker 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 RadDatePicker in XAML
<Grid>
<input:RadDatePicker Width="300"/>
</Grid>