System.Windows.Forms.ThemeWin32Classic.UpDownBaseDrawButton C# (CSharp) Method

UpDownBaseDrawButton() public method

public UpDownBaseDrawButton ( Graphics g, Rectangle bounds, bool top, VisualStyles state ) : void
g Graphics
bounds Rectangle
top bool
state VisualStyles
return void
		public override void UpDownBaseDrawButton (Graphics g, Rectangle bounds, bool top, VisualStyles.PushButtonState state)
		{
			ControlPaint.DrawScrollButton (g, bounds, top ? ScrollButton.Up : ScrollButton.Down, state == VisualStyles.PushButtonState.Pressed ? ButtonState.Pushed : ButtonState.Normal);
		}
ThemeWin32Classic