2 writes to _owner
PresentationFramework (2)
src\Framework\System\Windows\Controls\DataGridRow.cs (2)
446_owner = owningDataGrid; 502_owner = null;
9 references to _owner
PresentationFramework (9)
src\Framework\System\Windows\Controls\DataGridRow.cs (9)
443bool fireOwnerChanged = (_owner != owningDataGrid); 444Debug.Assert(_owner == null || _owner == owningDataGrid, "_owner should be null before PrepareRow is called or the same as the owningDataGrid."); 485Debug.Assert(_owner == owningDataGrid, "_owner should be the same as the DataGrid that is clearing the row."); 511_owner.ItemAttachedStorage.SetValue(Item, property, objectWithProperty.GetValue(property)); 519if (_owner.ItemAttachedStorage.TryGetValue(Item, property, out value)) 586if (_owner != null) 588_owner.ItemAttachedStorage.ClearValue(Item, DataGridCellsPresenter.HeightProperty); 1342get { return _owner; }