2 instantiations of ContainerSelectorGlyph
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\ParentControlDesigner.cs (1)
1053
ContainerSelectorGlyph containerSelectorGlyph =
new
(translatedBounds, DesignerUtils.s_containerGrabHandleSize, glyphOffset, behavior);
System\Windows\Forms\Design\ToolStripDesigner.cs (1)
1385
ContainerSelectorGlyph containerSelectorGlyph =
new
(translatedBounds, DesignerUtils.s_containerGrabHandleSize, glyphOffset, behavior);
6 references to ContainerSelectorGlyph
System.Windows.Forms.Design (5)
System\Windows\Forms\Design\Behavior\ContainerSelectorBehavior.cs (2)
102
if (g is not
ContainerSelectorGlyph
selOld)
111
if (glyph is not
ContainerSelectorGlyph
selNew)
System\Windows\Forms\Design\Behavior\ContainerSelectorGlyph.cs (1)
48
_glyph ??= new Icon(typeof(
ContainerSelectorGlyph
), "MoverGlyph").ToBitmap();
System\Windows\Forms\Design\ParentControlDesigner.cs (1)
1053
ContainerSelectorGlyph
containerSelectorGlyph = new(translatedBounds, DesignerUtils.s_containerGrabHandleSize, glyphOffset, behavior);
System\Windows\Forms\Design\ToolStripDesigner.cs (1)
1385
ContainerSelectorGlyph
containerSelectorGlyph = new(translatedBounds, DesignerUtils.s_containerGrabHandleSize, glyphOffset, behavior);
System.Windows.Forms.Design.Tests (1)
System\Windows\Forms\Design\ParentControlDesignerTests.cs (1)
91
glyphs.OfType<
ContainerSelectorGlyph
>().Count().Should().Be(1);