34 references to MenuGlyph
System.Windows.Forms (4)
System\Windows\Forms\Rendering\ControlPaint.cs (4)
1697public static void DrawMenuGlyph(Graphics graphics, Rectangle rectangle, MenuGlyph glyph) 1707MenuGlyph glyph, 1719public static void DrawMenuGlyph(Graphics graphics, int x, int y, int width, int height, MenuGlyph glyph) 1729MenuGlyph glyph,
System.Windows.Forms.Tests (30)
System\Windows\Forms\ControlPaintTests.cs (30)
1389foreach (MenuGlyph glyph in Enum.GetValues(typeof(MenuGlyph))) 1400public void ControlPaint_DrawMenuGlyph_InvokeGraphicsRectangleMenuGlyph_Success(Rectangle rectangle, MenuGlyph glyph) 1412foreach (MenuGlyph glyph in Enum.GetValues(typeof(MenuGlyph))) 1432public void ControlPaint_DrawMenuGlyph_InvokeGraphicsRectangleMenuGlyphColorColor_Success(Rectangle rectangle, MenuGlyph glyph, Color foreColor, Color backColor) 1444public void ControlPaint_DrawMenuGlyph_InvokeGraphicsIntIntIntIntMenuGlyph_Success(Rectangle rectangle, MenuGlyph glyph) 1456public void ControlPaint_DrawMenuGlyph_InvokeGraphicsIntIntIntIntMenuGlyphColorColor_Success(Rectangle rectangle, MenuGlyph glyph, Color foreColor, Color backColor) 1467[InlineData(MenuGlyph.Arrow)] 1468[InlineData(MenuGlyph.Bullet)] 1469[InlineData(MenuGlyph.Checkmark)] 1470public void ControlPaint_DrawMenuGlyph_NullGraphics_ThrowsArgumentNullException(MenuGlyph glyph) 1477[InlineData(0, 4, MenuGlyph.Arrow)] 1478[InlineData(0, 4, MenuGlyph.Bullet)] 1479[InlineData(0, 4, MenuGlyph.Checkmark)] 1480[InlineData(3, 0, MenuGlyph.Arrow)] 1481[InlineData(3, 0, MenuGlyph.Bullet)] 1482[InlineData(3, 0, MenuGlyph.Checkmark)] 1483[InlineData(0, 0, MenuGlyph.Arrow)] 1484[InlineData(0, 0, MenuGlyph.Bullet)] 1485[InlineData(0, 0, MenuGlyph.Checkmark)] 1486public void ControlPaint_DrawMenuGlyph_EmptyRectangle_ThrowsArgumentException(int width, int height, MenuGlyph glyph) 1495[InlineData(MenuGlyph.Arrow)] 1496[InlineData(MenuGlyph.Bullet)] 1497[InlineData(MenuGlyph.Checkmark)] 1498public void ControlPaint_DrawMenuGlyph_NegativeWidth_ThrowsArgumentOutOfRangeException(MenuGlyph glyph) 1507[InlineData(MenuGlyph.Min)] 1508[InlineData(MenuGlyph.Bullet)] 1509[InlineData(MenuGlyph.Checkmark)] 1510public void ControlPaint_DrawMenuGlyph_NegativeHeight_ThrowsArgumentOutOfRangeException(MenuGlyph glyph)