'Declaration
Public Event DateValidationError As EventHandler(Of DatePickerDateValidationErrorEventArgs)
public event EventHandler<DatePickerDateValidationErrorEventArgs> DateValidationError
Event Data
The event handler receives an argument of type DatePickerDateValidationErrorEventArgs containing data related to this event. The following DatePickerDateValidationErrorEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Exception | Gets the initial exception associated with the System.Windows.Controls.DatePicker.DateValidationError event. |
Text | Gets or sets the text that caused the System.Windows.Controls.DatePicker.DateValidationError event. |
ThrowException | Gets or sets a value that indicates whether System.Windows.Controls.DatePickerDateValidationErrorEventArgs.Exception should be thrown. |
See Also