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

DrawCheckBoxImage() public method

public DrawCheckBoxImage ( Graphics g, CheckBox cb, Rectangle imageBounds ) : void
g System.Drawing.Graphics
cb CheckBox
imageBounds System.Drawing.Rectangle
return void
		public virtual void DrawCheckBoxImage (Graphics g, CheckBox cb, Rectangle imageBounds)
		{
			if (cb.Enabled)
				g.DrawImage (cb.Image, imageBounds);
			else
				CPDrawImageDisabled (g, cb.Image, imageBounds.Left, imageBounds.Top, ColorControl);
		}
ThemeWin32Classic