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

Provides information about RadPropertyGrid's ItemChanged event.

Definition

Namespace:Telerik.Windows.Controls.Data.PropertyGrid

Assembly:Telerik.Windows.Controls.Data.dll

Syntax:

C#
public class PropertyGridItemChangedEventArgs : EventArgs

Inheritance: objectEventArgsPropertyGridItemChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the PropertyGridItemChangedEventArgs class.

C#
public PropertyGridItemChangedEventArgs(object oldItem, object newItem)
Parameters:oldItemobject

The old item.

newItemobject

The new item.

Properties

Gets or sets the new item.

C#
public object NewItem { get; }
Property Value:

The new item.

Gets or sets the old item.

C#
public object OldItem { get; }
Property Value:

The old item.

Gets or sets a value that indicates whether the change of the item should force update on the list of property definitions.

C#
public bool ShouldUpdateContent { get; set; }