2 writes to _clonedElement
PresentationFramework (2)
System\Windows\Controls\ComboBox.cs (2)
869_clonedElement = null; 882_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); 866if (_clonedElement != null) 868_clonedElement.LayoutUpdated -= CloneLayoutUpdated; 884if (_clonedElement != null) 887VisualBrush visualBrush = new VisualBrush(_clonedElement) 893Viewbox = new Rect(_clonedElement.RenderSize), 897Viewport = new Rect(_clonedElement.RenderSize) 912DependencyObject parent = VisualTreeHelper.GetParent(_clonedElement); 916visualBrush.Transform = new MatrixTransform(new Matrix(-1.0, 0.0, 0.0, 1.0, _clonedElement.RenderSize.Width, 0.0)); 923Width = _clonedElement.RenderSize.Width, 924Height = _clonedElement.RenderSize.Height 927_clonedElement.LayoutUpdated += CloneLayoutUpdated; 956rect.Width = _clonedElement.RenderSize.Width; 957rect.Height = _clonedElement.RenderSize.Height; 960visualBrush.Viewbox = new Rect(_clonedElement.RenderSize); 961visualBrush.Viewport = new Rect(_clonedElement.RenderSize);