Commands
DatePicker Commands
Date Picker for Xamarin exposes the following commands you can use to programmatically manipulate displaying the popup as well as clearing the selected time:
- ToggleCommand(ICommand): Allows you to show/hide the popup used for selecting a date value.
- ClearCommand(ICommand): Allows you to clear the displayed date.
Example for ToggleCommand and ClearCommand
also you need to add the following namespace:
PopupSelector Commands
Through the popup users can pick a date. The date value should be confirmed or rejected through the OK and Cancel buttons placed on the popup.
DatePicker allows you to add a custom logic for the Accept and Cancel commands which are executed when OK and Cancel buttons, respectively, are pressed.
- AcceptCommand(ICommand): Defines the command which confirms the current selection of the picker and closes the popup. AcceptCommandParameter can be used to pass a parameter to the command execute method.
- CancelCommand(ICommand): Defines the command which rejects the current selection of the picker and closes the popup. CancelCommandParameter can be used to pass a parameter to the command execute method.
The Accept and Cancel commands can be applied using the SelectorSettings property of RadDatePicker. In addition, you can pass command parameters through the AcceptCommandParameter
and CancelCommandParameter
properties of the DatePicker SelectorSettings.
Here is a quick example on how they could be set:
Example for AcceptCommand and CancelCommand
and the ViewModel
also you need to add the following namespace: