6 references to DrawMenuGlyph
System.Windows.Forms.Tests (6)
System\Windows\Forms\ControlPaintTests.cs (6)
1402
ControlPaint.
DrawMenuGlyph
(graphics, rectangle, glyph);
1405
ControlPaint.
DrawMenuGlyph
(graphics, rectangle, glyph);
1470
Assert.Throws<ArgumentNullException>("graphics", () => ControlPaint.
DrawMenuGlyph
(null, new Rectangle(1, 2, 3, 4), glyph));
1488
Assert.Throws<ArgumentException>(() => ControlPaint.
DrawMenuGlyph
(graphics, new Rectangle(0, 0, width, height), glyph));
1500
Assert.Throws<ArgumentOutOfRangeException>("width", () => ControlPaint.
DrawMenuGlyph
(graphics, new Rectangle(0, 0, -3, 4), glyph));
1512
Assert.Throws<ArgumentOutOfRangeException>("height", () => ControlPaint.
DrawMenuGlyph
(graphics, new Rectangle(0, 0, 3, -4), glyph));