4 instantiations of Adorner
System.Windows.Forms.Design (4)
System\Windows\Forms\Design\Behavior\SelectionManager.cs (2)
63
SelectionGlyphAdorner = new
Adorner
();
64
BodyGlyphAdorner = 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)
24
private
Adorner
_designerActionAdorner; // used to add designeraction-related glyphs
52
public 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.
40
public BehaviorServiceAdornerCollection(
Adorner
[] value)
46
/// Represents the entry at the specified index of the <see cref="
Adorner
"/>.
57
public
Adorner
this[int index]
61
return ((
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
[])"/>
78
public int Add(
Adorner
value)
89
/// An array of type <see cref="
Adorner
"/> containing the objects to add to the
96
public 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;
135
public bool Contains(
Adorner
value)
166
public 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
182
public int IndexOf(
Adorner
value)
188
/// Inserts a <see cref="
Adorner
"/> into the
192
/// <param name=" value">The <see cref="
Adorner
"/> to insert.</param>
197
public void Insert(int index,
Adorner
value)
216
/// Removes a specific <see cref="
Adorner
"/> from the
220
/// The <see cref="
Adorner
"/> to remove from the
227
public void Remove(
Adorner
value)
System\Windows\Forms\Design\Behavior\BehaviorService.cs (1)
353
foreach (
Adorner
adorner in Adorners)
System\Windows\Forms\Design\Behavior\BehaviorServiceAdornerCollectionEnumerator.cs (2)
18
public
Adorner
Current => (
Adorner
)_baseEnumerator.Current;
System\Windows\Forms\Design\Behavior\ContainerSelectorBehavior.cs (1)
105
foreach (
Adorner
a in _behaviorService.Adorners)
System\Windows\Forms\Design\Behavior\DesignerActionGlyph.cs (3)
22
private readonly
Adorner
? _adorner; // A ptr back to our adorner - so when we decide to change state, we can invalidate
35
public DesignerActionGlyph(DesignerActionBehavior? behavior,
Adorner
? adorner)
48
private DesignerActionGlyph(DesignerActionBehavior? behavior,
Adorner
? adorner, Rectangle alternativeBounds, Control? alternativeParent)
System\Windows\Forms\Design\Behavior\DropSourceBehavior.cs (2)
901
Adorner
bodyGlyphAdorner = null;
909
foreach (
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" />.
93
internal
Adorner
BodyGlyphAdorner { get; private set; }
108
internal
Adorner
SelectionGlyphAdorner { get; private set; }
System\Windows\Forms\Design\Behavior\ToolboxItemSnapLineBehavior.cs (1)
276
Adorner
bodyAdorner = null;
System\Windows\Forms\Design\ComponentTray.cs (1)
2608
private
Adorner
_traySelectionAdorner; // we'll use a single adorner to manage the glyphs
System\Windows\Forms\Design\SplitContainerDesigner.cs (2)
359
Adorner
? bodyGlyphAdorner = selMgr?.BodyGlyphAdorner;
364
foreach (
Adorner
adorner in BehaviorService.Adorners)
System\Windows\Forms\Design\ToolStripAdornerWindowService.cs (2)
19
private
Adorner
_dropDownAdorner;
64
internal
Adorner
DropDownAdorner