132 references to DataGridNotificationTarget
PresentationFramework (132)
System\Windows\Controls\DataGrid.cs (36)
197((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns); 470((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.CellsPresenter); 478((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns | DataGridNotificationTarget.Cells); 486((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns); 494((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns | DataGridNotificationTarget.ColumnHeaders); 502((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnHeaders); 510((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnHeaders | DataGridNotificationTarget.RowHeaders); 518((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.DataGrid); 543((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows); 551((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.RowHeaders); 559((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.RowHeaders); 567((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.DetailsPresenter); 575((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnCollection | DataGridNotificationTarget.CellsPresenter | DataGridNotificationTarget.ColumnHeadersPresenter); 587internal void NotifyPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 601internal void NotifyPropertyChanged(DependencyObject d, string propertyName, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 2001DataGridNotificationTarget.CellsPresenter | DataGridNotificationTarget.ColumnHeadersPresenter | DataGridNotificationTarget.ColumnCollection); 5386((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.RowHeaders | DataGridNotificationTarget.Cells); 7936((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnCollection | DataGridNotificationTarget.ColumnHeadersPresenter | DataGridNotificationTarget.CellsPresenter); 8074((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.CellsPresenter | DataGridNotificationTarget.ColumnHeadersPresenter | DataGridNotificationTarget.ColumnCollection); 8408((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnHeadersPresenter);
System\Windows\Controls\DataGridCell.cs (3)
210((DataGridCell)d).NotifyPropertyChanged(d, string.Empty, e, DataGridNotificationTarget.Cells); 228cell.NotifyPropertyChanged(d, string.Empty, e, DataGridNotificationTarget.Cells); 234internal void NotifyPropertyChanged(DependencyObject d, string propertyName, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target)
System\Windows\Controls\DataGridColumn.cs (33)
255DataGridNotificationTarget.ColumnCollection | 256DataGridNotificationTarget.Columns | 257DataGridNotificationTarget.Cells | 258DataGridNotificationTarget.ColumnHeaders | 259DataGridNotificationTarget.CellsPresenter | 260DataGridNotificationTarget.ColumnHeadersPresenter | 261DataGridNotificationTarget.DataGrid); 315column.NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns); 354column.NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns); 786((DataGridColumn)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns | DataGridNotificationTarget.Cells); 794((DataGridColumn)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns | DataGridNotificationTarget.ColumnHeaders); 802((DataGridColumn)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns); 808internal void NotifyPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 814target &= ~DataGridNotificationTarget.Columns; 867if (target != DataGridNotificationTarget.None) 883DataGridOwner?.NotifyPropertyChanged(this, propertyName, new DependencyPropertyChangedEventArgs(), DataGridNotificationTarget.RefreshCellContent); 984DataGridNotificationTarget.DataGrid | 985DataGridNotificationTarget.Columns | 986DataGridNotificationTarget.ColumnCollection | 987DataGridNotificationTarget.Cells | 988DataGridNotificationTarget.ColumnHeaders | 989DataGridNotificationTarget.CellsPresenter | 990DataGridNotificationTarget.ColumnHeadersPresenter); 1080((DataGridColumn)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnHeaders); 1110((DataGridColumn)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnHeaders); 1261((DataGridColumn)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnHeaders); 1528DataGridNotificationTarget.CellsPresenter | DataGridNotificationTarget.ColumnHeadersPresenter | DataGridNotificationTarget.ColumnCollection | DataGridNotificationTarget.DataGrid | DataGridNotificationTarget.ColumnHeaders);
System\Windows\Controls\DataGridColumnCollection.cs (8)
161internal void NotifyPropertyChanged(DependencyObject d, string propertyName, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 213this[i].NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns); 1135DataGridNotificationTarget.CellsPresenter | DataGridNotificationTarget.ColumnHeadersPresenter); 2409DataGridNotificationTarget.CellsPresenter | DataGridNotificationTarget.ColumnHeadersPresenter); 2452DataGridNotificationTarget.CellsPresenter | DataGridNotificationTarget.ColumnHeadersPresenter);
System\Windows\Controls\DataGridHelper.cs (32)
70public static bool ShouldNotifyCells(DataGridNotificationTarget target) 72return TestTarget(target, DataGridNotificationTarget.Cells); 75public static bool ShouldNotifyCellsPresenter(DataGridNotificationTarget target) 77return TestTarget(target, DataGridNotificationTarget.CellsPresenter); 80public static bool ShouldNotifyColumns(DataGridNotificationTarget target) 82return TestTarget(target, DataGridNotificationTarget.Columns); 85public static bool ShouldNotifyColumnHeaders(DataGridNotificationTarget target) 87return TestTarget(target, DataGridNotificationTarget.ColumnHeaders); 90public static bool ShouldNotifyColumnHeadersPresenter(DataGridNotificationTarget target) 92return TestTarget(target, DataGridNotificationTarget.ColumnHeadersPresenter); 95public static bool ShouldNotifyColumnCollection(DataGridNotificationTarget target) 97return TestTarget(target, DataGridNotificationTarget.ColumnCollection); 100public static bool ShouldNotifyDataGrid(DataGridNotificationTarget target) 102return TestTarget(target, DataGridNotificationTarget.DataGrid); 105public static bool ShouldNotifyDetailsPresenter(DataGridNotificationTarget target) 107return TestTarget(target, DataGridNotificationTarget.DetailsPresenter); 110public static bool ShouldRefreshCellContent(DataGridNotificationTarget target) 112return TestTarget(target, DataGridNotificationTarget.RefreshCellContent); 115public static bool ShouldNotifyRowHeaders(DataGridNotificationTarget target) 117return TestTarget(target, DataGridNotificationTarget.RowHeaders); 120public static bool ShouldNotifyRows(DataGridNotificationTarget target) 122return TestTarget(target, DataGridNotificationTarget.Rows); 125public static bool ShouldNotifyRowSubtree(DataGridNotificationTarget target) 127DataGridNotificationTarget value = 128DataGridNotificationTarget.Rows | 129DataGridNotificationTarget.RowHeaders | 130DataGridNotificationTarget.CellsPresenter | 131DataGridNotificationTarget.Cells | 132DataGridNotificationTarget.RefreshCellContent | 133DataGridNotificationTarget.DetailsPresenter; 138private static bool TestTarget(DataGridNotificationTarget target, DataGridNotificationTarget value)
System\Windows\Controls\DataGridRow.cs (14)
423NotifyPropertyChanged(this, e, DataGridNotificationTarget.Rows); 773(d as DataGridRow).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows); 778(d as DataGridRow).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.RowHeaders); 784row.NotifyPropertyChanged(row, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.DetailsPresenter); 806row.NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.DetailsPresenter); 856internal void NotifyPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 864internal void NotifyPropertyChanged(DependencyObject d, string propertyName, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 1079row.NotifyPropertyChanged(row, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.RowHeaders); 1089row.NotifyPropertyChanged(row, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.RowHeaders);
System\Windows\Controls\Primitives\DataGridCellsPresenter.cs (4)
109NotifyPropertyChanged(this, new DependencyPropertyChangedEventArgs(DataGrid.CellStyleProperty, null, null), DataGridNotificationTarget.Cells); 360((DataGridCellsPresenter)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.CellsPresenter); 366internal void NotifyPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 374internal void NotifyPropertyChanged(DependencyObject d, string propertyName, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target)
System\Windows\Controls\Primitives\DataGridColumnHeadersPresenter.cs (2)
276internal void NotifyPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 284internal void NotifyPropertyChanged(DependencyObject d, string propertyName, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target)