132 references to DataGridNotificationTarget
PresentationFramework (132)
System\Windows\Controls\DataGrid.cs (36)
200((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns); 473((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.CellsPresenter); 481((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns | DataGridNotificationTarget.Cells); 489((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns); 497((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns | DataGridNotificationTarget.ColumnHeaders); 505((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnHeaders); 513((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnHeaders | DataGridNotificationTarget.RowHeaders); 521((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.DataGrid); 546((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows); 554((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.RowHeaders); 562((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.RowHeaders); 570((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.DetailsPresenter); 578((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnCollection | DataGridNotificationTarget.CellsPresenter | DataGridNotificationTarget.ColumnHeadersPresenter); 590internal void NotifyPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 604internal void NotifyPropertyChanged(DependencyObject d, string propertyName, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 2009DataGridNotificationTarget.CellsPresenter | DataGridNotificationTarget.ColumnHeadersPresenter | DataGridNotificationTarget.ColumnCollection); 5427((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.RowHeaders | DataGridNotificationTarget.Cells); 7982((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnCollection | DataGridNotificationTarget.ColumnHeadersPresenter | DataGridNotificationTarget.CellsPresenter); 8120((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.CellsPresenter | DataGridNotificationTarget.ColumnHeadersPresenter | DataGridNotificationTarget.ColumnCollection); 8454((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnHeadersPresenter);
System\Windows\Controls\DataGridCell.cs (3)
220((DataGridCell)d).NotifyPropertyChanged(d, string.Empty, e, DataGridNotificationTarget.Cells); 238cell.NotifyPropertyChanged(d, string.Empty, e, DataGridNotificationTarget.Cells); 244internal void NotifyPropertyChanged(DependencyObject d, string propertyName, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target)
System\Windows\Controls\DataGridColumn.cs (33)
258DataGridNotificationTarget.ColumnCollection | 259DataGridNotificationTarget.Columns | 260DataGridNotificationTarget.Cells | 261DataGridNotificationTarget.ColumnHeaders | 262DataGridNotificationTarget.CellsPresenter | 263DataGridNotificationTarget.ColumnHeadersPresenter | 264DataGridNotificationTarget.DataGrid); 318column.NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns); 357column.NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns); 789((DataGridColumn)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns | DataGridNotificationTarget.Cells); 797((DataGridColumn)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns | DataGridNotificationTarget.ColumnHeaders); 805((DataGridColumn)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns); 811internal void NotifyPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 817target &= ~DataGridNotificationTarget.Columns; 870if (target != DataGridNotificationTarget.None) 891DataGridOwner.NotifyPropertyChanged(this, propertyName, new DependencyPropertyChangedEventArgs(), DataGridNotificationTarget.RefreshCellContent); 996DataGridNotificationTarget.DataGrid | 997DataGridNotificationTarget.Columns | 998DataGridNotificationTarget.ColumnCollection | 999DataGridNotificationTarget.Cells | 1000DataGridNotificationTarget.ColumnHeaders | 1001DataGridNotificationTarget.CellsPresenter | 1002DataGridNotificationTarget.ColumnHeadersPresenter); 1092((DataGridColumn)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnHeaders); 1122((DataGridColumn)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnHeaders); 1271((DataGridColumn)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnHeaders); 1538DataGridNotificationTarget.CellsPresenter | DataGridNotificationTarget.ColumnHeadersPresenter | DataGridNotificationTarget.ColumnCollection | DataGridNotificationTarget.DataGrid | DataGridNotificationTarget.ColumnHeaders);
System\Windows\Controls\DataGridColumnCollection.cs (8)
165internal void NotifyPropertyChanged(DependencyObject d, string propertyName, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 218this[i].NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns); 1143DataGridNotificationTarget.CellsPresenter | DataGridNotificationTarget.ColumnHeadersPresenter); 2417DataGridNotificationTarget.CellsPresenter | DataGridNotificationTarget.ColumnHeadersPresenter); 2460DataGridNotificationTarget.CellsPresenter | DataGridNotificationTarget.ColumnHeadersPresenter);
System\Windows\Controls\DataGridHelper.cs (32)
76public static bool ShouldNotifyCells(DataGridNotificationTarget target) 78return TestTarget(target, DataGridNotificationTarget.Cells); 81public static bool ShouldNotifyCellsPresenter(DataGridNotificationTarget target) 83return TestTarget(target, DataGridNotificationTarget.CellsPresenter); 86public static bool ShouldNotifyColumns(DataGridNotificationTarget target) 88return TestTarget(target, DataGridNotificationTarget.Columns); 91public static bool ShouldNotifyColumnHeaders(DataGridNotificationTarget target) 93return TestTarget(target, DataGridNotificationTarget.ColumnHeaders); 96public static bool ShouldNotifyColumnHeadersPresenter(DataGridNotificationTarget target) 98return TestTarget(target, DataGridNotificationTarget.ColumnHeadersPresenter); 101public static bool ShouldNotifyColumnCollection(DataGridNotificationTarget target) 103return TestTarget(target, DataGridNotificationTarget.ColumnCollection); 106public static bool ShouldNotifyDataGrid(DataGridNotificationTarget target) 108return TestTarget(target, DataGridNotificationTarget.DataGrid); 111public static bool ShouldNotifyDetailsPresenter(DataGridNotificationTarget target) 113return TestTarget(target, DataGridNotificationTarget.DetailsPresenter); 116public static bool ShouldRefreshCellContent(DataGridNotificationTarget target) 118return TestTarget(target, DataGridNotificationTarget.RefreshCellContent); 121public static bool ShouldNotifyRowHeaders(DataGridNotificationTarget target) 123return TestTarget(target, DataGridNotificationTarget.RowHeaders); 126public static bool ShouldNotifyRows(DataGridNotificationTarget target) 128return TestTarget(target, DataGridNotificationTarget.Rows); 131public static bool ShouldNotifyRowSubtree(DataGridNotificationTarget target) 133DataGridNotificationTarget value = 134DataGridNotificationTarget.Rows | 135DataGridNotificationTarget.RowHeaders | 136DataGridNotificationTarget.CellsPresenter | 137DataGridNotificationTarget.Cells | 138DataGridNotificationTarget.RefreshCellContent | 139DataGridNotificationTarget.DetailsPresenter; 144private static bool TestTarget(DataGridNotificationTarget target, DataGridNotificationTarget value)
System\Windows\Controls\DataGridRow.cs (14)
427NotifyPropertyChanged(this, e, DataGridNotificationTarget.Rows); 784(d as DataGridRow).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows); 789(d as DataGridRow).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.RowHeaders); 795row.NotifyPropertyChanged(row, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.DetailsPresenter); 820row.NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.DetailsPresenter); 870internal void NotifyPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 878internal void NotifyPropertyChanged(DependencyObject d, string propertyName, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 1108row.NotifyPropertyChanged(row, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.RowHeaders); 1118row.NotifyPropertyChanged(row, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.RowHeaders);
System\Windows\Controls\Primitives\DataGridCellsPresenter.cs (4)
114NotifyPropertyChanged(this, new DependencyPropertyChangedEventArgs(DataGrid.CellStyleProperty, null, null), DataGridNotificationTarget.Cells); 368((DataGridCellsPresenter)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.CellsPresenter); 374internal void NotifyPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 382internal void NotifyPropertyChanged(DependencyObject d, string propertyName, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target)
System\Windows\Controls\Primitives\DataGridColumnHeadersPresenter.cs (2)
281internal void NotifyPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 289internal void NotifyPropertyChanged(DependencyObject d, string propertyName, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target)