New to Telerik UI for WPFStart a free 30-day trial

Event arguments that describe RadPropertyGrid's Validated event.

Definition

Namespace:Telerik.Windows.Controls.Data.PropertyGrid

Assembly:Telerik.Windows.Controls.Data.dll

Syntax:

C#
public class PropertyGridValidatedEventArgs : RadRoutedEventArgs

Inheritance: objectRadRoutedEventArgsPropertyGridValidatedEventArgs

Constructors

Initializes a new instance of the PropertyGridValidatedEventArgs class.

C#
public PropertyGridValidatedEventArgs(PropertyGridField field, IEnumerable<ValidationResult> validationResults)
Parameters:fieldPropertyGridField

The field.

validationResultsIEnumerable<ValidationResult>

The validation results.

Properties

Gets or sets the field.

C#
public PropertyGridField Field { get; set; }
Property Value:

The field.

Gets the validation results.

C#
public IEnumerable<ValidationResult> ValidationResults { get; }
Property Value:

The validation results.