8 instantiations of NoResizeSelectionBorderGlyph
System.Windows.Forms.Design (8)
System\Windows\Forms\Design\ControlDesigner.cs (4)
777
glyphs.Add(new
NoResizeSelectionBorderGlyph
(translatedBounds, rules, SelectionBorderGlyphType.Top, MoveBehavior));
778
glyphs.Add(new
NoResizeSelectionBorderGlyph
(translatedBounds, rules, SelectionBorderGlyphType.Bottom, MoveBehavior));
779
glyphs.Add(new
NoResizeSelectionBorderGlyph
(translatedBounds, rules, SelectionBorderGlyphType.Left, MoveBehavior));
780
glyphs.Add(new
NoResizeSelectionBorderGlyph
(translatedBounds, rules, SelectionBorderGlyphType.Right, MoveBehavior));
System\Windows\Forms\Design\DocumentDesigner.cs (4)
547
glyphs.Add(new
NoResizeSelectionBorderGlyph
(translatedBounds, rules, SelectionBorderGlyphType.Top, null));
548
glyphs.Add(new
NoResizeSelectionBorderGlyph
(translatedBounds, rules, SelectionBorderGlyphType.Bottom, null));
549
glyphs.Add(new
NoResizeSelectionBorderGlyph
(translatedBounds, rules, SelectionBorderGlyphType.Left, null));
550
glyphs.Add(new
NoResizeSelectionBorderGlyph
(translatedBounds, rules, SelectionBorderGlyphType.Right, null));
4 references to NoResizeSelectionBorderGlyph
System.Windows.Forms.Design.Tests (4)
ControlDesignerTests.cs (4)
276
glyphs[1].Should().BeOfType<
NoResizeSelectionBorderGlyph
>();
278
glyphs[2].Should().BeOfType<
NoResizeSelectionBorderGlyph
>();
280
glyphs[3].Should().BeOfType<
NoResizeSelectionBorderGlyph
>();
282
glyphs[4].Should().BeOfType<
NoResizeSelectionBorderGlyph
>();