System.Windows.Forms.ThemeWin32Classic.DrawCheckBoxImage C# (CSharp) 메소드

DrawCheckBoxImage() 공개 메소드

public DrawCheckBoxImage ( Graphics g, CheckBox cb, Rectangle imageBounds ) : void
g System.Drawing.Graphics
cb CheckBox
imageBounds System.Drawing.Rectangle
리턴 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