2 writes to _child
PresentationFramework (2)
src\Framework\MS\Internal\Documents\UIElementIsland.cs (2)
38_child = child; 171_child = null;
16 references to _child
PresentationFramework (16)
src\Framework\MS\Internal\Documents\UIElementIsland.cs (16)
40if (_child != null) 43Visual currentParent = VisualTreeHelper.GetParent(_child) as Visual; 51Children.Add(_child); 75if (_child != null) 79if (_child is FrameworkElement && ((FrameworkElement)_child).Parent != null) 81SetValue(FrameworkElement.FlowDirectionProperty, ((FrameworkElement)_child).Parent.GetValue(FrameworkElement.FlowDirectionProperty)); 89_child.Measure(availableSize); 92islandSize.Width = horizontalAutoSize ? _child.DesiredSize.Width : availableSize.Width; 93islandSize.Height = verticalAutoSize ? _child.DesiredSize.Height : availableSize.Height; 94_child.Arrange(new Rect(islandSize)); 121return _child; 168if (_child != null) 213if (_child != null) 215hostedElements.Add(_child); 226Invariant.Assert(child == _child);