Selection
RadDateTimePicker control enables the app users to quickly and easily select a date value. This topic will go through the provided by the DateTimePicker API related to time selection.
Important Properties
- Date(DateTime?): Defines the current date selection. The default value is null.
Methods
DateTime Picker for Xamarin allows you to clear the selected date/time through its ClearSelection method
Example
In addition to this, you need to add the following namespace:
Call ClearSelection inside the button click event - as a result Date property will be updated to null.
Events
RadDateTime Picker exposes a SelectionChanged event which is raised when the user pick the selected date/time.
Example
In addition to this, you need to add the following namespace:
and the SelectionChanged event, where the sender is the RadDateTimePicker control: