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) 2006DataGridNotificationTarget.CellsPresenter | DataGridNotificationTarget.ColumnHeadersPresenter | DataGridNotificationTarget.ColumnCollection); 5424((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.RowHeaders | DataGridNotificationTarget.Cells); 7979((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnCollection | DataGridNotificationTarget.ColumnHeadersPresenter | DataGridNotificationTarget.CellsPresenter); 8117((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.CellsPresenter | DataGridNotificationTarget.ColumnHeadersPresenter | DataGridNotificationTarget.ColumnCollection); 8451((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnHeadersPresenter);
System\Windows\Controls\DataGridCell.cs (3)
213((DataGridCell)d).NotifyPropertyChanged(d, string.Empty, e, DataGridNotificationTarget.Cells); 231cell.NotifyPropertyChanged(d, string.Empty, e, DataGridNotificationTarget.Cells); 237internal 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) 888DataGridOwner.NotifyPropertyChanged(this, propertyName, new DependencyPropertyChangedEventArgs(), DataGridNotificationTarget.RefreshCellContent); 993DataGridNotificationTarget.DataGrid | 994DataGridNotificationTarget.Columns | 995DataGridNotificationTarget.ColumnCollection | 996DataGridNotificationTarget.Cells | 997DataGridNotificationTarget.ColumnHeaders | 998DataGridNotificationTarget.CellsPresenter | 999DataGridNotificationTarget.ColumnHeadersPresenter); 1089((DataGridColumn)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnHeaders); 1119((DataGridColumn)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnHeaders); 1268((DataGridColumn)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnHeaders); 1535DataGridNotificationTarget.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); 1138DataGridNotificationTarget.CellsPresenter | DataGridNotificationTarget.ColumnHeadersPresenter); 2412DataGridNotificationTarget.CellsPresenter | DataGridNotificationTarget.ColumnHeadersPresenter); 2455DataGridNotificationTarget.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); 780(d as DataGridRow).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows); 785(d as DataGridRow).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.RowHeaders); 791row.NotifyPropertyChanged(row, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.DetailsPresenter); 816row.NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.DetailsPresenter); 866internal void NotifyPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 874internal void NotifyPropertyChanged(DependencyObject d, string propertyName, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 1104row.NotifyPropertyChanged(row, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.RowHeaders); 1114row.NotifyPropertyChanged(row, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.RowHeaders);
System\Windows\Controls\Primitives\DataGridCellsPresenter.cs (4)
109NotifyPropertyChanged(this, new DependencyPropertyChangedEventArgs(DataGrid.CellStyleProperty, null, null), DataGridNotificationTarget.Cells); 363((DataGridCellsPresenter)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.CellsPresenter); 369internal void NotifyPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 377internal 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)