ComponentOne DateTimeEditors for WPF and Silverlight
SelectionCommitted Event (C1DateTimePicker)

C1.WPF.DateTimeEditors Namespace > C1DateTimePicker Class : SelectionCommitted Event
The SelectionCommitted event is fired when the new DateTime property value is committed.
Syntax
'Declaration
 
Public Event SelectionCommitted As System.EventHandler(Of PropertyChangedEventArgs(Of Object))
public event System.EventHandler<PropertyChangedEventArgs<object>> SelectionCommitted
Event Data

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

PropertyDescription
 
 
Remarks
It's possible, that DateTime property is changed while end-user works with drop-down calendar using keyboard. In such case DateTimeChanged event might be fired many times. SelectionCommitted event is fired only once at closing drop-down calendar. When DateTime property is changed without using drop-down calendar, SelectionCommitted and DateTimeChanged events are fired one by one.
See Also