7 references to DrawScrollButton
System.Windows.Forms (1)
System\Windows\Forms\Rendering\ControlPaint.cs (1)
1842
=>
DrawScrollButton
(graphics, rectangle.X, rectangle.Y, rectangle.Width, rectangle.Height, button, state);
System.Windows.Forms.Tests (6)
System\Windows\Forms\ControlPaintTests.cs (6)
1765
ControlPaint.
DrawScrollButton
(graphics, rectangle.X, rectangle.Y, rectangle.Width, rectangle.Height, button, state);
1768
ControlPaint.
DrawScrollButton
(graphics, rectangle.X, rectangle.Y, rectangle.Width, rectangle.Height, button, state);
1777
Assert.Throws<ArgumentNullException>("graphics", () => ControlPaint.
DrawScrollButton
(null, 1, 2, 3, 4, ScrollButton.Up, state));
1791
Assert.Throws<ArgumentException>(() => ControlPaint.
DrawScrollButton
(graphics, 0, 0, width, height, ScrollButton.Up, state));
1802
Assert.Throws<ArgumentOutOfRangeException>("width", () => ControlPaint.
DrawScrollButton
(graphics, 0, 0, -3, 4, ScrollButton.Up, state));
1813
Assert.Throws<ArgumentOutOfRangeException>("height", () => ControlPaint.
DrawScrollButton
(graphics, 0, 0, 3, -4, ScrollButton.Up, state));