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