2 types derived from ControlBodyGlyph
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\Behavior\ToolStripPanelSelectionGlyph.cs (1)
10internal sealed class ToolStripPanelSelectionGlyph : ControlBodyGlyph
System\Windows\Forms\Design\ToolStripItemGlyph.cs (1)
12internal class ToolStripItemGlyph : ControlBodyGlyph
9 instantiations of ControlBodyGlyph
System.Windows.Forms.Design (9)
System\Windows\Forms\Design\ControlDesigner.cs (2)
702g = new ControlBodyGlyph(translatedBounds, cursor, Control, MoveBehavior); 715g ??= new ControlBodyGlyph(translatedBounds, cursor, Control, this);
System\Windows\Forms\Design\ParentControlDesigner.cs (2)
1014return new ControlBodyGlyph(nonClipRect, Cursor.Current, Control, this); 1025return new ControlBodyGlyph(controlRect, Cursor.Current, Control, this);
System\Windows\Forms\Design\SplitContainerDesigner.cs (2)
207ControlBodyGlyph bodyGlyph = new(translatedBounds, Cursor.Current, _splitterPanel1, panelDesigner); 217ControlBodyGlyph bodyGlyph = new(translatedBounds, Cursor.Current, _splitterPanel2, panelDesigner);
System\Windows\Forms\Design\TabPageDesigner.cs (1)
49ControlBodyGlyph g = new(translatedBounds, Cursor.Current, Control, this);
System\Windows\Forms\Design\ToolStripContainerDesigner.cs (1)
241ControlBodyGlyph bodyGlyph = new(translatedBounds, Cursor.Current, currentPanel, panelDesigner);
System\Windows\Forms\Design\ToolStripDropDownDesigner.cs (1)
699_dummyToolStripGlyph = new ControlBodyGlyph(r, Cursor.Current, _menuItem, new ContextMenuStripBehavior());
26 references to ControlBodyGlyph
System.Design (1)
artifacts\obj\System.Design.Facade\Release\net10.0\System.Design.Forwards.cs (1)
76[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Windows.Forms.Design.Behavior.ControlBodyGlyph))]
System.Windows.Forms.Design (24)
System\Windows\Forms\Design\Behavior\BehaviorService.cs (1)
644if (g is ControlBodyGlyph && e.Effect == DragDropEffects.None)
System\Windows\Forms\Design\Behavior\SelectionManager.cs (2)
142ControlBodyGlyph bodyGlyph = controlDesigner.GetControlGlyphInternal(selType); 262foreach (ControlBodyGlyph g in BodyGlyphAdorner.Glyphs)
System\Windows\Forms\Design\Behavior\ToolboxItemSnapLineBehavior.cs (2)
283List<ControlBodyGlyph> glyphsToRemove = []; 284foreach (ControlBodyGlyph body in bodyAdorner.Glyphs)
System\Windows\Forms\Design\ControlDesigner.cs (3)
675protected virtual ControlBodyGlyph GetControlGlyph(GlyphSelectionType selectionType) 685ControlBodyGlyph? g = null; 720internal ControlBodyGlyph GetControlGlyphInternal(GlyphSelectionType selectionType) => GetControlGlyph(selectionType);
System\Windows\Forms\Design\ParentControlDesigner.cs (1)
992protected override ControlBodyGlyph GetControlGlyph(GlyphSelectionType selectionType)
System\Windows\Forms\Design\SplitContainerDesigner.cs (5)
196protected override ControlBodyGlyph GetControlGlyph(GlyphSelectionType selectionType) 207ControlBodyGlyph bodyGlyph = new(translatedBounds, Cursor.Current, _splitterPanel1, panelDesigner); 217ControlBodyGlyph bodyGlyph = new(translatedBounds, Cursor.Current, _splitterPanel2, panelDesigner); 378List<ControlBodyGlyph> glyphsToRemove = []; 379foreach (ControlBodyGlyph g in bodyGlyphAdorner!.Glyphs)
System\Windows\Forms\Design\TabPageDesigner.cs (2)
40protected override ControlBodyGlyph GetControlGlyph(GlyphSelectionType selectionType) 49ControlBodyGlyph g = new(translatedBounds, Cursor.Current, Control, this);
System\Windows\Forms\Design\ToolStripContainerDesigner.cs (2)
223protected override ControlBodyGlyph GetControlGlyph(GlyphSelectionType selectionType) 241ControlBodyGlyph bodyGlyph = new(translatedBounds, Cursor.Current, currentPanel, panelDesigner);
System\Windows\Forms\Design\ToolStripDesigner.cs (2)
1259protected override ControlBodyGlyph GetControlGlyph(GlyphSelectionType selectionType) 2241ControlBodyGlyph glyph = dropDownItemDesigner._bodyGlyph;
System\Windows\Forms\Design\ToolStripDropDownDesigner.cs (1)
26private ControlBodyGlyph _dummyToolStripGlyph;
System\Windows\Forms\Design\ToolStripItemDesigner.cs (1)
29internal ControlBodyGlyph _bodyGlyph;
System\Windows\Forms\Design\ToolStripMenuItemDesigner.cs (2)
2381ControlBodyGlyph glyph = dropDownItemDesigner._bodyGlyph; 2402ControlBodyGlyph glyph = itemDesigner._bodyGlyph;
System.Windows.Forms.Design.Tests (1)
TestControlDesigner.cs (1)
69internal ControlBodyGlyph GetControlGlyphMethod(GlyphSelectionType selectionType)