New to Telerik UI for WinUI? Start a free 30-day trial
Display Mode
Updated on Mar 10, 2026
DisplayMode is a property of RadDateTimePicker that defines how to visualize the control. It takes two values:
- The Standard mode is the default representation of RadDatePicker and RadTimePicker.
- The Inline mode is a feature that excludes the TextBlock part with the button and directly initializes the Date/Time Selector Popup part:
In Inline mode, selection is made after every change of the Date/Time value and there are no Submit or Cancel buttons.
Here in an example that demonstrates how to set the DisplayMode property:
Example 1: Setting Inline Mode
XAML
<input:RadDateTimePicker DisplayMode="Inline" />
