132 references to DataGridNotificationTarget
PresentationFramework (132)
System\Windows\Controls\DataGrid.cs (36)
196((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns); 469((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.CellsPresenter); 477((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns | DataGridNotificationTarget.Cells); 485((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns); 493((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns | DataGridNotificationTarget.ColumnHeaders); 501((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnHeaders); 509((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnHeaders | DataGridNotificationTarget.RowHeaders); 517((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.DataGrid); 542((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows); 550((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.RowHeaders); 558((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.RowHeaders); 566((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.DetailsPresenter); 574((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnCollection | DataGridNotificationTarget.CellsPresenter | DataGridNotificationTarget.ColumnHeadersPresenter); 586internal void NotifyPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 600internal void NotifyPropertyChanged(DependencyObject d, string propertyName, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 2000DataGridNotificationTarget.CellsPresenter | DataGridNotificationTarget.ColumnHeadersPresenter | DataGridNotificationTarget.ColumnCollection); 5385((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.RowHeaders | DataGridNotificationTarget.Cells); 7935((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnCollection | DataGridNotificationTarget.ColumnHeadersPresenter | DataGridNotificationTarget.CellsPresenter); 8073((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.CellsPresenter | DataGridNotificationTarget.ColumnHeadersPresenter | DataGridNotificationTarget.ColumnCollection); 8407((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnHeadersPresenter);
System\Windows\Controls\DataGridCell.cs (3)
209((DataGridCell)d).NotifyPropertyChanged(d, string.Empty, e, DataGridNotificationTarget.Cells); 227cell.NotifyPropertyChanged(d, string.Empty, e, DataGridNotificationTarget.Cells); 233internal void NotifyPropertyChanged(DependencyObject d, string propertyName, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target)
System\Windows\Controls\DataGridColumn.cs (33)
254DataGridNotificationTarget.ColumnCollection | 255DataGridNotificationTarget.Columns | 256DataGridNotificationTarget.Cells | 257DataGridNotificationTarget.ColumnHeaders | 258DataGridNotificationTarget.CellsPresenter | 259DataGridNotificationTarget.ColumnHeadersPresenter | 260DataGridNotificationTarget.DataGrid); 314column.NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns); 353column.NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns); 785((DataGridColumn)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns | DataGridNotificationTarget.Cells); 793((DataGridColumn)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns | DataGridNotificationTarget.ColumnHeaders); 801((DataGridColumn)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns); 807internal void NotifyPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 813target &= ~DataGridNotificationTarget.Columns; 866if (target != DataGridNotificationTarget.None) 882DataGridOwner?.NotifyPropertyChanged(this, propertyName, new DependencyPropertyChangedEventArgs(), DataGridNotificationTarget.RefreshCellContent); 983DataGridNotificationTarget.DataGrid | 984DataGridNotificationTarget.Columns | 985DataGridNotificationTarget.ColumnCollection | 986DataGridNotificationTarget.Cells | 987DataGridNotificationTarget.ColumnHeaders | 988DataGridNotificationTarget.CellsPresenter | 989DataGridNotificationTarget.ColumnHeadersPresenter); 1079((DataGridColumn)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnHeaders); 1109((DataGridColumn)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnHeaders); 1260((DataGridColumn)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnHeaders); 1527DataGridNotificationTarget.CellsPresenter | DataGridNotificationTarget.ColumnHeadersPresenter | DataGridNotificationTarget.ColumnCollection | DataGridNotificationTarget.DataGrid | DataGridNotificationTarget.ColumnHeaders);
System\Windows\Controls\DataGridColumnCollection.cs (8)
160internal void NotifyPropertyChanged(DependencyObject d, string propertyName, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 212this[i].NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns); 1134DataGridNotificationTarget.CellsPresenter | DataGridNotificationTarget.ColumnHeadersPresenter); 2408DataGridNotificationTarget.CellsPresenter | DataGridNotificationTarget.ColumnHeadersPresenter); 2451DataGridNotificationTarget.CellsPresenter | DataGridNotificationTarget.ColumnHeadersPresenter);
System\Windows\Controls\DataGridHelper.cs (32)
69public static bool ShouldNotifyCells(DataGridNotificationTarget target) 71return TestTarget(target, DataGridNotificationTarget.Cells); 74public static bool ShouldNotifyCellsPresenter(DataGridNotificationTarget target) 76return TestTarget(target, DataGridNotificationTarget.CellsPresenter); 79public static bool ShouldNotifyColumns(DataGridNotificationTarget target) 81return TestTarget(target, DataGridNotificationTarget.Columns); 84public static bool ShouldNotifyColumnHeaders(DataGridNotificationTarget target) 86return TestTarget(target, DataGridNotificationTarget.ColumnHeaders); 89public static bool ShouldNotifyColumnHeadersPresenter(DataGridNotificationTarget target) 91return TestTarget(target, DataGridNotificationTarget.ColumnHeadersPresenter); 94public static bool ShouldNotifyColumnCollection(DataGridNotificationTarget target) 96return TestTarget(target, DataGridNotificationTarget.ColumnCollection); 99public static bool ShouldNotifyDataGrid(DataGridNotificationTarget target) 101return TestTarget(target, DataGridNotificationTarget.DataGrid); 104public static bool ShouldNotifyDetailsPresenter(DataGridNotificationTarget target) 106return TestTarget(target, DataGridNotificationTarget.DetailsPresenter); 109public static bool ShouldRefreshCellContent(DataGridNotificationTarget target) 111return TestTarget(target, DataGridNotificationTarget.RefreshCellContent); 114public static bool ShouldNotifyRowHeaders(DataGridNotificationTarget target) 116return TestTarget(target, DataGridNotificationTarget.RowHeaders); 119public static bool ShouldNotifyRows(DataGridNotificationTarget target) 121return TestTarget(target, DataGridNotificationTarget.Rows); 124public static bool ShouldNotifyRowSubtree(DataGridNotificationTarget target) 126DataGridNotificationTarget value = 127DataGridNotificationTarget.Rows | 128DataGridNotificationTarget.RowHeaders | 129DataGridNotificationTarget.CellsPresenter | 130DataGridNotificationTarget.Cells | 131DataGridNotificationTarget.RefreshCellContent | 132DataGridNotificationTarget.DetailsPresenter; 137private static bool TestTarget(DataGridNotificationTarget target, DataGridNotificationTarget value)
System\Windows\Controls\DataGridRow.cs (14)
422NotifyPropertyChanged(this, e, DataGridNotificationTarget.Rows); 772(d as DataGridRow).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows); 777(d as DataGridRow).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.RowHeaders); 783row.NotifyPropertyChanged(row, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.DetailsPresenter); 805row.NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.DetailsPresenter); 855internal void NotifyPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 863internal void NotifyPropertyChanged(DependencyObject d, string propertyName, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 1078row.NotifyPropertyChanged(row, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.RowHeaders); 1088row.NotifyPropertyChanged(row, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.RowHeaders);
System\Windows\Controls\Primitives\DataGridCellsPresenter.cs (4)
108NotifyPropertyChanged(this, new DependencyPropertyChangedEventArgs(DataGrid.CellStyleProperty, null, null), DataGridNotificationTarget.Cells); 359((DataGridCellsPresenter)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.CellsPresenter); 365internal void NotifyPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 373internal void NotifyPropertyChanged(DependencyObject d, string propertyName, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target)
System\Windows\Controls\Primitives\DataGridColumnHeadersPresenter.cs (2)
275internal void NotifyPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 283internal void NotifyPropertyChanged(DependencyObject d, string propertyName, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target)