2 writes to _owner
PresentationFramework (2)
System\Windows\Controls\DataGridRow.cs (2)
437_owner = owningDataGrid; 490_owner = null;
8 references to _owner
PresentationFramework (8)
System\Windows\Controls\DataGridRow.cs (8)
434bool fireOwnerChanged = (_owner != owningDataGrid); 435Debug.Assert(_owner == null || _owner == owningDataGrid, "_owner should be null before PrepareRow is called or the same as the owningDataGrid."); 476Debug.Assert(_owner == owningDataGrid, "_owner should be the same as the DataGrid that is clearing the row."); 499_owner.ItemAttachedStorage.SetValue(Item, property, objectWithProperty.GetValue(property)); 507if (_owner.ItemAttachedStorage.TryGetValue(Item, property, out value)) 574_owner?.ItemAttachedStorage.ClearValue(Item, DataGridCellsPresenter.HeightProperty); 1299get { return _owner; }