2 overrides of GetGlyphs
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\ParentControlDesigner.cs (1)
1031public override GlyphCollection GetGlyphs(GlyphSelectionType selectionType)
System\Windows\Forms\Design\ToolStripDesigner.cs (1)
1343public override GlyphCollection GetGlyphs(GlyphSelectionType selType)
8 references to GetGlyphs
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\Behavior\SelectionManager.cs (1)
155GlyphCollection glyphs = controlDesigner.GetGlyphs(selType);
System\Windows\Forms\Design\ParentControlDesigner.cs (1)
1033GlyphCollection glyphs = base.GetGlyphs(selectionType);
System\Windows\Forms\Design\ToolStripDesigner.cs (1)
1352GlyphCollection toolStripGlyphs = base.GetGlyphs(selType);
System.Windows.Forms.Design.Tests (5)
ControlDesignerTests.cs (5)
237GlyphCollection glyphs = _designer.GetGlyphs(GlyphSelectionType.SelectedPrimary); 247GlyphCollection glyphs = _designer.GetGlyphs(GlyphSelectionType.NotSelected); 257Action action = () => _designer.GetGlyphs(GlyphSelectionType.SelectedPrimary); 274GlyphCollection glyphs = _designer.GetGlyphs(GlyphSelectionType.SelectedPrimary); 303GlyphCollection glyphs = _designer.GetGlyphs(GlyphSelectionType.SelectedPrimary);