ComponentOne Basic Library for UWP
SelectedDateChanged Event

C1.UWP Assembly > C1.Xaml Namespace > C1DateTimeSelector Class : SelectedDateChanged Event
Fires when the SelectedDate property changes.
Syntax
'Declaration
 
Public Event SelectedDateChanged As System.EventHandler(Of NullablePropertyChangedEventArgs(Of Date))
public event System.EventHandler<NullablePropertyChangedEventArgs<DateTime>> SelectedDateChanged
Event Data

The event handler receives an argument of type NullablePropertyChangedEventArgs<T> containing data related to this event. The following NullablePropertyChangedEventArgs<T> properties provide information specific to this event.

PropertyDescription
The value of the property after the change. (Inherited from C1.Xaml.PropertyChangedEventArgs<Nullable<T>>)
The value of the property before the change. (Inherited from C1.Xaml.PropertyChangedEventArgs<Nullable<T>>)
See Also