33 references to GlyphCollection
System.Design (1)
artifacts\obj\System.Design.Facade\Release\net10.0\System.Design.Forwards.cs (1)
78[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Windows.Forms.Design.Behavior.GlyphCollection))]
System.Windows.Forms.Design (27)
System\Windows\Forms\Design\Behavior\Adorner.cs (2)
17private readonly GlyphCollection _glyphs; // collection of Glyphs that this particular Adorner manages 60public GlyphCollection Glyphs
System\Windows\Forms\Design\Behavior\GlyphCollection.cs (2)
23public GlyphCollection(GlyphCollection value) 68public void AddRange(GlyphCollection value)
System\Windows\Forms\Design\Behavior\SelectionManager.cs (1)
155GlyphCollection glyphs = controlDesigner.GetGlyphs(selType);
System\Windows\Forms\Design\ComponentTray.cs (5)
283GlyphCollection glyphs = _glyphManager.GetGlyphsForComponent(selectedComponent); 447internal GlyphCollection SelectionGlyphs 2624public GlyphCollection SelectionGlyphs 2644public GlyphCollection GetGlyphsForComponent(IComponent comp) 2646GlyphCollection glyphs = [];
System\Windows\Forms\Design\ControlDesigner.cs (2)
727public virtual GlyphCollection GetGlyphs(GlyphSelectionType selectionType) 729GlyphCollection glyphs = [];
System\Windows\Forms\Design\DesignerToolStripControlHost.cs (2)
35internal GlyphCollection GetGlyphs(ToolStrip parent, GlyphCollection glyphs, Behavior.Behavior standardBehavior)
System\Windows\Forms\Design\DocumentDesigner.cs (2)
506public override GlyphCollection GetGlyphs(GlyphSelectionType selectionType) 508GlyphCollection glyphs = [];
System\Windows\Forms\Design\ParentControlDesigner.cs (2)
1031public override GlyphCollection GetGlyphs(GlyphSelectionType selectionType) 1033GlyphCollection glyphs = base.GetGlyphs(selectionType);
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (2)
1059public override GlyphCollection GetGlyphs(GlyphSelectionType selectionType) 1061GlyphCollection glyphs = base.GetGlyphs(selectionType);
System\Windows\Forms\Design\ToolStripContainerDesigner.cs (2)
290private bool CheckDropDownBounds(ToolStripDropDownItem dropDownItem, Glyph childGlyph, GlyphCollection glyphs) 310private bool CheckAssociatedControl(Component component, Glyph childGlyph, GlyphCollection glyphs)
System\Windows\Forms\Design\ToolStripDesigner.cs (3)
1343public override GlyphCollection GetGlyphs(GlyphSelectionType selType) 1346GlyphCollection glyphs = []; 1352GlyphCollection toolStripGlyphs = base.GetGlyphs(selType);
System\Windows\Forms\Design\ToolStripDropDownDesigner.cs (1)
202GlyphCollection glyphs = [];
System\Windows\Forms\Design\ToolStripItemDesigner.cs (1)
569public void GetGlyphs(ref GlyphCollection glyphs, Behavior.Behavior standardBehavior)
System.Windows.Forms.Design.Tests (5)
ControlDesignerTests.cs (5)
237GlyphCollection glyphs = _designer.GetGlyphs(GlyphSelectionType.SelectedPrimary); 240glyphs.Should().BeOfType<GlyphCollection>(); 247GlyphCollection glyphs = _designer.GetGlyphs(GlyphSelectionType.NotSelected); 274GlyphCollection glyphs = _designer.GetGlyphs(GlyphSelectionType.SelectedPrimary); 303GlyphCollection glyphs = _designer.GetGlyphs(GlyphSelectionType.SelectedPrimary);