.NET MAUI TimePicker Selection
The TimePicker control enables users to select a time value. This topic explains the TimePicker API related to time selection.
Time Property
To define the current time selection, use the Time
(TimeSpan?
) property. The default value is null
.
Add the namespace:
Clear Button
You can enable a Clear button which can be used to quickly remove the selected value. To enable the button, set IsClearButtonVisible
property of the TimePicker:
Methods
To cancel the selected time, use the ClearSelection
method.
Call ClearSelection
inside the button click
event to update the Time
property to null
.
Events
The TimePicker exposes the SelectionChanged
event, which is raised when the user picks a time value.
Add the SelectionChanged
event, where the sender
is of type object
, but can be cast to the RadTimePicker
type: