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