4 instantiations of Adorner
System.Windows.Forms.Design (4)
System\Windows\Forms\Design\Behavior\SelectionManager.cs (2)
63SelectionGlyphAdorner = new Adorner(); 64BodyGlyphAdorner = new Adorner();
System\Windows\Forms\Design\ComponentTray.cs (1)
2618_traySelectionAdorner = new Adorner();
System\Windows\Forms\Design\ToolStripAdornerWindowService.cs (1)
37_dropDownAdorner = new Adorner();
49 references to Adorner
System.Design (1)
artifacts\obj\System.Design.Facade\Release\net9.0\System.Design.Forwards.cs (1)
68[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Windows.Forms.Design.Behavior.Adorner))]
System.Windows.Forms.Design (48)
System\ComponentModel\Design\DesignerActionUI.cs (2)
24private Adorner _designerActionAdorner; // used to add designeraction-related glyphs 52public DesignerActionUI(IServiceProvider serviceProvider, Adorner containerAdorner)
System\Windows\Forms\Design\Behavior\AdornerCollection.cs (28)
9/// A collection that stores <see cref="Adorner"/> objects. 35/// containing any array of <see cref="Adorner"/> objects. 38/// A array of <see cref="Adorner"/> objects with which to initialize the collection. 40public BehaviorServiceAdornerCollection(Adorner[] value) 46/// Represents the entry at the specified index of the <see cref="Adorner"/>. 57public Adorner this[int index] 61return ((Adorner)(List[index]!)); 70/// Adds a <see cref="Adorner"/> with the specified value to the 73/// <param name="value">The <see cref="Adorner"/> to add.</param> 77/// <seealso cref="AddRange(Adorner[])"/> 78public int Add(Adorner value) 89/// An array of type <see cref="Adorner"/> containing the objects to add to the 96public void AddRange(params Adorner[] value) 127/// <see cref="BehaviorServiceAdornerCollection"/> contains the specified <see cref="Adorner"/>. 129/// <param name="value">The <see cref="Adorner"/> to locate.</param> 131/// <see langword="true"/> if the <see cref="Adorner"/> is contained in the collection; 135public bool Contains(Adorner value) 166public void CopyTo(Adorner[] array, int index) 172/// Returns the index of a <see cref="Adorner"/> in 175/// <param name="value">The <see cref="Adorner"/> to locate.</param> 177/// The index of the <see cref="Adorner"/> of <paramref name="value"/> in 182public int IndexOf(Adorner value) 188/// Inserts a <see cref="Adorner"/> into the 192/// <param name=" value">The <see cref="Adorner"/> to insert.</param> 197public void Insert(int index, Adorner value) 216/// Removes a specific <see cref="Adorner"/> from the 220/// The <see cref="Adorner"/> to remove from the 227public void Remove(Adorner value)
System\Windows\Forms\Design\Behavior\BehaviorService.cs (1)
353foreach (Adorner adorner in Adorners)
System\Windows\Forms\Design\Behavior\BehaviorServiceAdornerCollectionEnumerator.cs (2)
18public Adorner Current => (Adorner)_baseEnumerator.Current;
System\Windows\Forms\Design\Behavior\ContainerSelectorBehavior.cs (1)
105foreach (Adorner a in _behaviorService.Adorners)
System\Windows\Forms\Design\Behavior\DesignerActionGlyph.cs (3)
22private readonly Adorner? _adorner; // A ptr back to our adorner - so when we decide to change state, we can invalidate 35public DesignerActionGlyph(DesignerActionBehavior? behavior, Adorner? adorner) 48private DesignerActionGlyph(DesignerActionBehavior? behavior, Adorner? adorner, Rectangle alternativeBounds, Control? alternativeParent)
System\Windows\Forms\Design\Behavior\DropSourceBehavior.cs (2)
901Adorner bodyGlyphAdorner = null; 909foreach (Adorner a in behaviorService.Adorners)
System\Windows\Forms\Design\Behavior\SelectionManager.cs (3)
40/// components change. Also, we create our custom <see cref="Adorner" /> and add it to the <see cref="BehaviorService" />. 93internal Adorner BodyGlyphAdorner { get; private set; } 108internal Adorner SelectionGlyphAdorner { get; private set; }
System\Windows\Forms\Design\Behavior\ToolboxItemSnapLineBehavior.cs (1)
276Adorner bodyAdorner = null;
System\Windows\Forms\Design\ComponentTray.cs (1)
2608private Adorner _traySelectionAdorner; // we'll use a single adorner to manage the glyphs
System\Windows\Forms\Design\SplitContainerDesigner.cs (2)
359Adorner? bodyGlyphAdorner = selMgr?.BodyGlyphAdorner; 364foreach (Adorner adorner in BehaviorService.Adorners)
System\Windows\Forms\Design\ToolStripAdornerWindowService.cs (2)
19private Adorner _dropDownAdorner; 64internal Adorner DropDownAdorner