Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DataControlBase.DetectNestedPropertyChanges Property

Gets or sets whether the GridControl detects nested property changes.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v24.2.Core.dll

NuGet Package: DevExpress.Wpf.Grid.Core

#Declaration

public bool DetectNestedPropertyChanges { get; set; }

#Property Value

Type Description
Boolean

true, to make the GridControl detect nested property changes; otherwise, false.

#Remarks

To make the GridControl detect nested property changes, set the DetectNestedPropertyChanges property to true and implement the INotifyPropertyChanged interface for the object that contains the property that changes.

Also, you can set the DataControlBase.AllowLiveDataShaping property to true to recalculate sorting, grouping, filtering, summaries, scrollbar annotations and conditional formats automatically when data in a data source is modified.

Note

The DetectNestedPropertyChanges property works only with data sources that implement IList / IEnumerable.

See Also