'宣言 Public Event SelectionCommitted As System.EventHandler(Of PropertyChangedEventArgs(Of Object))
public event System.EventHandler<PropertyChangedEventArgs<object>> SelectionCommitted
イベント データ
イベント ハンドラが、このイベントに関連するデータを含む、C1.WPF.PropertyChangedEventArgs<T> 型の引数を受け取りました。次の PropertyChangedEventArgs<T> プロパティには、このイベントの固有の情報が記載されます。
プロパティ | 解説 |
---|---|
NewValue | The value of the property after the change. |
OldValue | The value of the property before the change. |
解説
エンドユーザーがキーボードを使用してドロップダウンカレンダーを操作している間に DateTime プロパティが変更される場合があります。この場合は、DateTimeChanged イベントが何度も発生します。SelectionCommitted イベントは、ドロップダウンカレンダーを閉じるときに一度だけ発生します。ドロップダウンカレンダーを使用せずに DateTime プロパティが変更された場合は、SelectionCommitted イベントと DateTimeChanged イベントが一度ずつ発生します。
参照