Class PropertyGridValidatedEventArgs
Event arguments that describe RadPropertyGrid's Validated event.
Inherited Members
Namespace: Telerik.Windows.Controls.Data.PropertyGrid
Assembly: Telerik.Windows.Controls.Data.dll
Syntax
public class PropertyGridValidatedEventArgs : RadRoutedEventArgs
Constructors
PropertyGridValidatedEventArgs(PropertyGridField, IEnumerable<ValidationResult>)
Initializes a new instance of the PropertyGridValidatedEventArgs class.
Declaration
public PropertyGridValidatedEventArgs(PropertyGridField field, IEnumerable<ValidationResult> validationResults)
Parameters
PropertyGridField
field
The field. |
System.Collections.Generic.IEnumerable<System.ComponentModel.DataAnnotations.ValidationResult>
validationResults
The validation results. |
Properties
Field
Gets or sets the field.
Declaration
public PropertyGridField Field { get; set; }
Property Value
PropertyGridField
The field. |
ValidationResults
Gets the validation results.
Declaration
public IEnumerable<ValidationResult> ValidationResults { get; }
Property Value
System.Collections.Generic.IEnumerable<System.ComponentModel.DataAnnotations.ValidationResult>
The validation results. |