132 references to DataGridNotificationTarget
PresentationFramework (132)
src\Framework\System\Windows\Controls\DataGrid.cs (36)
201((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns); 474((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.CellsPresenter); 482((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns | DataGridNotificationTarget.Cells); 490((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns); 498((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns | DataGridNotificationTarget.ColumnHeaders); 506((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnHeaders); 514((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnHeaders | DataGridNotificationTarget.RowHeaders); 522((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.DataGrid); 547((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows); 555((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.RowHeaders); 563((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.RowHeaders); 571((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.DetailsPresenter); 579((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnCollection | DataGridNotificationTarget.CellsPresenter | DataGridNotificationTarget.ColumnHeadersPresenter); 591internal void NotifyPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 605internal void NotifyPropertyChanged(DependencyObject d, string propertyName, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 2013DataGridNotificationTarget.CellsPresenter | DataGridNotificationTarget.ColumnHeadersPresenter | DataGridNotificationTarget.ColumnCollection); 5432((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.RowHeaders | DataGridNotificationTarget.Cells); 7988((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnCollection | DataGridNotificationTarget.ColumnHeadersPresenter | DataGridNotificationTarget.CellsPresenter); 8126((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.CellsPresenter | DataGridNotificationTarget.ColumnHeadersPresenter | DataGridNotificationTarget.ColumnCollection); 8481((DataGrid)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnHeadersPresenter);
src\Framework\System\Windows\Controls\DataGridCell.cs (3)
215((DataGridCell)d).NotifyPropertyChanged(d, string.Empty, e, DataGridNotificationTarget.Cells); 233cell.NotifyPropertyChanged(d, string.Empty, e, DataGridNotificationTarget.Cells); 239internal void NotifyPropertyChanged(DependencyObject d, string propertyName, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target)
src\Framework\System\Windows\Controls\DataGridColumn.cs (33)
259DataGridNotificationTarget.ColumnCollection | 260DataGridNotificationTarget.Columns | 261DataGridNotificationTarget.Cells | 262DataGridNotificationTarget.ColumnHeaders | 263DataGridNotificationTarget.CellsPresenter | 264DataGridNotificationTarget.ColumnHeadersPresenter | 265DataGridNotificationTarget.DataGrid); 319column.NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns); 358column.NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns); 796((DataGridColumn)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns | DataGridNotificationTarget.Cells); 804((DataGridColumn)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns | DataGridNotificationTarget.ColumnHeaders); 812((DataGridColumn)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns); 818internal void NotifyPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 824target &= ~DataGridNotificationTarget.Columns; 877if (target != DataGridNotificationTarget.None) 898DataGridOwner.NotifyPropertyChanged(this, propertyName, new DependencyPropertyChangedEventArgs(), DataGridNotificationTarget.RefreshCellContent); 1003DataGridNotificationTarget.DataGrid | 1004DataGridNotificationTarget.Columns | 1005DataGridNotificationTarget.ColumnCollection | 1006DataGridNotificationTarget.Cells | 1007DataGridNotificationTarget.ColumnHeaders | 1008DataGridNotificationTarget.CellsPresenter | 1009DataGridNotificationTarget.ColumnHeadersPresenter); 1099((DataGridColumn)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnHeaders); 1129((DataGridColumn)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnHeaders); 1278((DataGridColumn)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.ColumnHeaders); 1535DataGridNotificationTarget.CellsPresenter | DataGridNotificationTarget.ColumnHeadersPresenter | DataGridNotificationTarget.ColumnCollection | DataGridNotificationTarget.DataGrid | DataGridNotificationTarget.ColumnHeaders);
src\Framework\System\Windows\Controls\DataGridColumnCollection.cs (8)
166internal void NotifyPropertyChanged(DependencyObject d, string propertyName, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 219this[i].NotifyPropertyChanged(d, e, DataGridNotificationTarget.Columns); 1144DataGridNotificationTarget.CellsPresenter | DataGridNotificationTarget.ColumnHeadersPresenter); 2418DataGridNotificationTarget.CellsPresenter | DataGridNotificationTarget.ColumnHeadersPresenter); 2461DataGridNotificationTarget.CellsPresenter | DataGridNotificationTarget.ColumnHeadersPresenter);
src\Framework\System\Windows\Controls\DataGridHelper.cs (32)
77public static bool ShouldNotifyCells(DataGridNotificationTarget target) 79return TestTarget(target, DataGridNotificationTarget.Cells); 82public static bool ShouldNotifyCellsPresenter(DataGridNotificationTarget target) 84return TestTarget(target, DataGridNotificationTarget.CellsPresenter); 87public static bool ShouldNotifyColumns(DataGridNotificationTarget target) 89return TestTarget(target, DataGridNotificationTarget.Columns); 92public static bool ShouldNotifyColumnHeaders(DataGridNotificationTarget target) 94return TestTarget(target, DataGridNotificationTarget.ColumnHeaders); 97public static bool ShouldNotifyColumnHeadersPresenter(DataGridNotificationTarget target) 99return TestTarget(target, DataGridNotificationTarget.ColumnHeadersPresenter); 102public static bool ShouldNotifyColumnCollection(DataGridNotificationTarget target) 104return TestTarget(target, DataGridNotificationTarget.ColumnCollection); 107public static bool ShouldNotifyDataGrid(DataGridNotificationTarget target) 109return TestTarget(target, DataGridNotificationTarget.DataGrid); 112public static bool ShouldNotifyDetailsPresenter(DataGridNotificationTarget target) 114return TestTarget(target, DataGridNotificationTarget.DetailsPresenter); 117public static bool ShouldRefreshCellContent(DataGridNotificationTarget target) 119return TestTarget(target, DataGridNotificationTarget.RefreshCellContent); 122public static bool ShouldNotifyRowHeaders(DataGridNotificationTarget target) 124return TestTarget(target, DataGridNotificationTarget.RowHeaders); 127public static bool ShouldNotifyRows(DataGridNotificationTarget target) 129return TestTarget(target, DataGridNotificationTarget.Rows); 132public static bool ShouldNotifyRowSubtree(DataGridNotificationTarget target) 134DataGridNotificationTarget value = 135DataGridNotificationTarget.Rows | 136DataGridNotificationTarget.RowHeaders | 137DataGridNotificationTarget.CellsPresenter | 138DataGridNotificationTarget.Cells | 139DataGridNotificationTarget.RefreshCellContent | 140DataGridNotificationTarget.DetailsPresenter; 145private static bool TestTarget(DataGridNotificationTarget target, DataGridNotificationTarget value)
src\Framework\System\Windows\Controls\DataGridRow.cs (14)
428NotifyPropertyChanged(this, e, DataGridNotificationTarget.Rows); 785(d as DataGridRow).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows); 790(d as DataGridRow).NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.RowHeaders); 796row.NotifyPropertyChanged(row, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.DetailsPresenter); 821row.NotifyPropertyChanged(d, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.DetailsPresenter); 871internal void NotifyPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 879internal void NotifyPropertyChanged(DependencyObject d, string propertyName, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 1109row.NotifyPropertyChanged(row, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.RowHeaders); 1119row.NotifyPropertyChanged(row, e, DataGridNotificationTarget.Rows | DataGridNotificationTarget.RowHeaders);
src\Framework\System\Windows\Controls\Primitives\DataGridCellsPresenter.cs (4)
115NotifyPropertyChanged(this, new DependencyPropertyChangedEventArgs(DataGrid.CellStyleProperty, null, null), DataGridNotificationTarget.Cells); 369((DataGridCellsPresenter)d).NotifyPropertyChanged(d, e, DataGridNotificationTarget.CellsPresenter); 375internal void NotifyPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target) 383internal void NotifyPropertyChanged(DependencyObject d, string propertyName, DependencyPropertyChangedEventArgs e, DataGridNotificationTarget target)
src\Framework\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)