2 types derived from ControlBodyGlyph
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\Behavior\ToolStripPanelSelectionGlyph.cs (1)
10
internal sealed class ToolStripPanelSelectionGlyph :
ControlBodyGlyph
System\Windows\Forms\Design\ToolStripItemGlyph.cs (1)
12
internal class ToolStripItemGlyph :
ControlBodyGlyph
9 instantiations of ControlBodyGlyph
System.Windows.Forms.Design (9)
System\Windows\Forms\Design\ControlDesigner.cs (2)
717
g = new
ControlBodyGlyph
(translatedBounds, cursor, Control, MoveBehavior);
730
g ??= new
ControlBodyGlyph
(translatedBounds, cursor, Control, this);
System\Windows\Forms\Design\ParentControlDesigner.cs (2)
1014
return new
ControlBodyGlyph
(nonClipRect, Cursor.Current, Control, this);
1025
return new
ControlBodyGlyph
(controlRect, Cursor.Current, Control, this);
System\Windows\Forms\Design\SplitContainerDesigner.cs (2)
207
ControlBodyGlyph bodyGlyph =
new
(translatedBounds, Cursor.Current, _splitterPanel1, panelDesigner);
217
ControlBodyGlyph bodyGlyph =
new
(translatedBounds, Cursor.Current, _splitterPanel2, panelDesigner);
System\Windows\Forms\Design\TabPageDesigner.cs (1)
49
ControlBodyGlyph g =
new
(translatedBounds, Cursor.Current, Control, this);
System\Windows\Forms\Design\ToolStripContainerDesigner.cs (1)
241
ControlBodyGlyph bodyGlyph =
new
(translatedBounds, Cursor.Current, currentPanel, panelDesigner);
System\Windows\Forms\Design\ToolStripDropDownDesigner.cs (1)
690
_dummyToolStripGlyph = new
ControlBodyGlyph
(r, Cursor.Current, _menuItem, new ContextMenuStripBehavior());
25 references to ControlBodyGlyph
System.Design (1)
src\winforms\artifacts\obj\System.Design.Facade\Release\net11.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)
641
if (g is
ControlBodyGlyph
&& e.Effect == DragDropEffects.None)
System\Windows\Forms\Design\Behavior\SelectionManager.cs (2)
142
ControlBodyGlyph
bodyGlyph = controlDesigner.GetControlGlyphInternal(selType);
259
foreach (
ControlBodyGlyph
g in BodyGlyphAdorner.Glyphs)
System\Windows\Forms\Design\Behavior\ToolboxItemSnapLineBehavior.cs (2)
273
List<
ControlBodyGlyph
> glyphsToRemove = [];
274
foreach (
ControlBodyGlyph
body in bodyAdorner.Glyphs)
System\Windows\Forms\Design\ControlDesigner.cs (3)
690
protected virtual
ControlBodyGlyph
GetControlGlyph(GlyphSelectionType selectionType)
700
ControlBodyGlyph
? g = null;
735
internal
ControlBodyGlyph
GetControlGlyphInternal(GlyphSelectionType selectionType) => GetControlGlyph(selectionType);
System\Windows\Forms\Design\ParentControlDesigner.cs (1)
992
protected override
ControlBodyGlyph
GetControlGlyph(GlyphSelectionType selectionType)
System\Windows\Forms\Design\SplitContainerDesigner.cs (5)
196
protected override
ControlBodyGlyph
GetControlGlyph(GlyphSelectionType selectionType)
207
ControlBodyGlyph
bodyGlyph = new(translatedBounds, Cursor.Current, _splitterPanel1, panelDesigner);
217
ControlBodyGlyph
bodyGlyph = new(translatedBounds, Cursor.Current, _splitterPanel2, panelDesigner);
378
List<
ControlBodyGlyph
> glyphsToRemove = [];
379
foreach (
ControlBodyGlyph
g in bodyGlyphAdorner!.Glyphs)
System\Windows\Forms\Design\TabPageDesigner.cs (2)
40
protected override
ControlBodyGlyph
GetControlGlyph(GlyphSelectionType selectionType)
49
ControlBodyGlyph
g = new(translatedBounds, Cursor.Current, Control, this);
System\Windows\Forms\Design\ToolStripContainerDesigner.cs (2)
223
protected override
ControlBodyGlyph
GetControlGlyph(GlyphSelectionType selectionType)
241
ControlBodyGlyph
bodyGlyph = new(translatedBounds, Cursor.Current, currentPanel, panelDesigner);
System\Windows\Forms\Design\ToolStripDesigner.cs (2)
1242
protected override
ControlBodyGlyph
GetControlGlyph(GlyphSelectionType selectionType)
2257
ControlBodyGlyph
glyph = dropDownItemDesigner._bodyGlyph;
System\Windows\Forms\Design\ToolStripDropDownDesigner.cs (1)
26
private
ControlBodyGlyph
_dummyToolStripGlyph;
System\Windows\Forms\Design\ToolStripItemDesigner.cs (1)
29
internal
ControlBodyGlyph
_bodyGlyph;
System\Windows\Forms\Design\ToolStripMenuItemDesigner.cs (2)
2330
ControlBodyGlyph
glyph = dropDownItemDesigner._bodyGlyph;
2351
ControlBodyGlyph
glyph = itemDesigner._bodyGlyph;