2 writes to _owner
PresentationFramework (2)
System\Windows\Controls\DataGridRow.cs (2)
445
_owner
= owningDataGrid;
501
_owner
= null;
9 references to _owner
PresentationFramework (9)
System\Windows\Controls\DataGridRow.cs (9)
442
bool fireOwnerChanged = (
_owner
!= owningDataGrid);
443
Debug.Assert(
_owner
== null ||
_owner
== owningDataGrid, "_owner should be null before PrepareRow is called or the same as the owningDataGrid.");
484
Debug.Assert(
_owner
== owningDataGrid, "_owner should be the same as the DataGrid that is clearing the row.");
510
_owner
.ItemAttachedStorage.SetValue(Item, property, objectWithProperty.GetValue(property));
518
if (
_owner
.ItemAttachedStorage.TryGetValue(Item, property, out value))
585
if (
_owner
!= null)
587
_owner
.ItemAttachedStorage.ClearValue(Item, DataGridCellsPresenter.HeightProperty);
1341
get { return
_owner
; }