7 references to DrawMenuGlyph
System.Windows.Forms (1)
System\Windows\Forms\Rendering\ControlPaint.cs (1)
1698
=>
DrawMenuGlyph
(graphics, rectangle.X, rectangle.Y, rectangle.Width, rectangle.Height, glyph);
System.Windows.Forms.Tests (6)
System\Windows\Forms\ControlPaintTests.cs (6)
1448
ControlPaint.
DrawMenuGlyph
(graphics, rectangle.X, rectangle.Y, rectangle.Width, rectangle.Height, glyph);
1451
ControlPaint.
DrawMenuGlyph
(graphics, rectangle.X, rectangle.Y, rectangle.Width, rectangle.Height, glyph);
1473
Assert.Throws<ArgumentNullException>("graphics", () => ControlPaint.
DrawMenuGlyph
(null, 1, 2, 3, 4, glyph));
1491
Assert.Throws<ArgumentException>(() => ControlPaint.
DrawMenuGlyph
(graphics, 0, 0, width, height, glyph));
1503
Assert.Throws<ArgumentOutOfRangeException>("width", () => ControlPaint.
DrawMenuGlyph
(graphics, 0, 0, -3, 4, glyph));
1515
Assert.Throws<ArgumentOutOfRangeException>("height", () => ControlPaint.
DrawMenuGlyph
(graphics, 0, 0, 3, -4, glyph));