The SelectionCommitted event is fired when the new DateTime property value is committed.

Namespace:  C1.Silverlight.DateTimeEditors
Assembly:  C1.Silverlight.DateTimeEditors (in C1.Silverlight.DateTimeEditors.dll)

Syntax

C#
public event EventHandler<PropertyChangedEventArgs<Object>> SelectionCommitted
Visual Basic
Public Event SelectionCommitted As EventHandler(Of PropertyChangedEventArgs(Of Object))

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