System.Windows.Forms.ThemeWin32Classic.DrawCheckBoxImage C# (CSharp) Méthode

DrawCheckBoxImage() public méthode

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