2 writes to _owner
PresentationFramework (2)
System\Windows\Controls\DataGridRow.cs (2)
440
_owner
= owningDataGrid;
496
_owner
= null;
8 references to _owner
PresentationFramework (8)
System\Windows\Controls\DataGridRow.cs (8)
437
bool fireOwnerChanged = (
_owner
!= owningDataGrid);
438
Debug.Assert(
_owner
== null ||
_owner
== owningDataGrid, "_owner should be null before PrepareRow is called or the same as the owningDataGrid.");
479
Debug.Assert(
_owner
== owningDataGrid, "_owner should be the same as the DataGrid that is clearing the row.");
505
_owner
.ItemAttachedStorage.SetValue(Item, property, objectWithProperty.GetValue(property));
513
if (
_owner
.ItemAttachedStorage.TryGetValue(Item, property, out value))
580
_owner
?.ItemAttachedStorage.ClearValue(Item, DataGridCellsPresenter.HeightProperty);
1305
get { return
_owner
; }