2 writes to _child
PresentationFramework (2)
MS\Internal\Documents\UIElementIsland.cs (2)
33_child = child; 166_child = null;
16 references to _child
PresentationFramework (16)
MS\Internal\Documents\UIElementIsland.cs (16)
35if (_child != null) 38Visual currentParent = VisualTreeHelper.GetParent(_child) as Visual; 46Children.Add(_child); 70if (_child != null) 74if (_child is FrameworkElement && ((FrameworkElement)_child).Parent != null) 76SetValue(FrameworkElement.FlowDirectionProperty, ((FrameworkElement)_child).Parent.GetValue(FrameworkElement.FlowDirectionProperty)); 84_child.Measure(availableSize); 87islandSize.Width = horizontalAutoSize ? _child.DesiredSize.Width : availableSize.Width; 88islandSize.Height = verticalAutoSize ? _child.DesiredSize.Height : availableSize.Height; 89_child.Arrange(new Rect(islandSize)); 116return _child; 163if (_child != null) 208if (_child != null) 210hostedElements.Add(_child); 221Invariant.Assert(child == _child);