2 writes to _clonedElement
PresentationFramework (2)
System\Windows\Controls\ComboBox.cs (2)
872_clonedElement = null; 885_clonedElement = logicalElement as UIElement;
19 references to _clonedElement
PresentationFramework (19)
System\Windows\Controls\ComboBox.cs (19)
226if (comboBox._clonedElement != null && VisualTreeHelper.GetParent(comboBox._clonedElement) == null) 235cb._clonedElement?.CoerceValue(FrameworkElement.FlowDirectionProperty); 488((highlightedElement = comboBox.HighlightedElement) != null && highlightedElement.Content == comboBox._clonedElement); 869if (_clonedElement != null) 871_clonedElement.LayoutUpdated -= CloneLayoutUpdated; 887if (_clonedElement != null) 890VisualBrush visualBrush = new VisualBrush(_clonedElement) 896Viewbox = new Rect(_clonedElement.RenderSize), 900Viewport = new Rect(_clonedElement.RenderSize) 915DependencyObject parent = VisualTreeHelper.GetParent(_clonedElement); 919visualBrush.Transform = new MatrixTransform(new Matrix(-1.0, 0.0, 0.0, 1.0, _clonedElement.RenderSize.Width, 0.0)); 926Width = _clonedElement.RenderSize.Width, 927Height = _clonedElement.RenderSize.Height 930_clonedElement.LayoutUpdated += CloneLayoutUpdated; 959rect.Width = _clonedElement.RenderSize.Width; 960rect.Height = _clonedElement.RenderSize.Height; 963visualBrush.Viewbox = new Rect(_clonedElement.RenderSize); 964visualBrush.Viewport = new Rect(_clonedElement.RenderSize);