7 references to DrawMenuGlyph
System.Windows.Forms (1)
System\Windows\Forms\Rendering\ControlPaint.cs (1)
1702
=>
DrawMenuGlyph
(graphics, rectangle.X, rectangle.Y, rectangle.Width, rectangle.Height, glyph);
System.Windows.Forms.Tests (6)
System\Windows\Forms\ControlPaintTests.cs (6)
1446
ControlPaint.
DrawMenuGlyph
(graphics, rectangle.X, rectangle.Y, rectangle.Width, rectangle.Height, glyph);
1449
ControlPaint.
DrawMenuGlyph
(graphics, rectangle.X, rectangle.Y, rectangle.Width, rectangle.Height, glyph);
1471
Assert.Throws<ArgumentNullException>("graphics", () => ControlPaint.
DrawMenuGlyph
(null, 1, 2, 3, 4, glyph));
1489
Assert.Throws<ArgumentException>(() => ControlPaint.
DrawMenuGlyph
(graphics, 0, 0, width, height, glyph));
1501
Assert.Throws<ArgumentOutOfRangeException>("width", () => ControlPaint.
DrawMenuGlyph
(graphics, 0, 0, -3, 4, glyph));
1513
Assert.Throws<ArgumentOutOfRangeException>("height", () => ControlPaint.
DrawMenuGlyph
(graphics, 0, 0, 3, -4, glyph));