CheckBoxRenderer.DrawCheckBox Method

Definition

Draws a check box control.

Overloads

DrawCheckBox(Graphics, Point, CheckBoxState)

Draws a check box control in the specified state and location.

DrawCheckBox(Graphics, Point, Rectangle, String, Font, Boolean, CheckBoxState)

Draws a check box control in the specified state and location, with the specified text, and with an optional focus rectangle.

DrawCheckBox(Graphics, Point, Rectangle, String, Font, TextFormatFlags, Boolean, CheckBoxState)

Draws a check box control in the specified state and location, with the specified text and text formatting, and with an optional focus rectangle.

DrawCheckBox(Graphics, Point, Rectangle, String, Font, Image, Rectangle, Boolean, CheckBoxState)

Draws a check box control in the specified state and location, with the specified text and image, and with an optional focus rectangle.

DrawCheckBox(Graphics, Point, Rectangle, String, Font, TextFormatFlags, Image, Rectangle, Boolean, CheckBoxState)

Draws a check box control in the specified state and location; with the specified text, text formatting, and image; and with an optional focus rectangle.

DrawCheckBox(Graphics, Point, CheckBoxState)

Source:
CheckBoxRenderer.cs
Source:
CheckBoxRenderer.cs
Source:
CheckBoxRenderer.cs

Draws a check box control in the specified state and location.

C#
public static void DrawCheckBox(System.Drawing.Graphics g, System.Drawing.Point glyphLocation, System.Windows.Forms.VisualStyles.CheckBoxState state);

Parameters

g
Graphics

The Graphics used to draw the check box.

glyphLocation
Point

The Point to draw the check box glyph at.

state
CheckBoxState

One of the CheckBoxState values that specifies the visual state of the check box.

Remarks

If visual styles are enabled in the operating system and visual styles are applied to the current application, this method will draw the check box with the current visual style. Otherwise, it will draw the check box with the classic Windows style.

Applies to

.NET Framework 4.8.1 y otras versiones
Producto Versiones
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

DrawCheckBox(Graphics, Point, Rectangle, String, Font, Boolean, CheckBoxState)

Source:
CheckBoxRenderer.cs
Source:
CheckBoxRenderer.cs
Source:
CheckBoxRenderer.cs

Draws a check box control in the specified state and location, with the specified text, and with an optional focus rectangle.

C#
public static void DrawCheckBox(System.Drawing.Graphics g, System.Drawing.Point glyphLocation, System.Drawing.Rectangle textBounds, string checkBoxText, System.Drawing.Font font, bool focused, System.Windows.Forms.VisualStyles.CheckBoxState state);
C#
public static void DrawCheckBox(System.Drawing.Graphics g, System.Drawing.Point glyphLocation, System.Drawing.Rectangle textBounds, string? checkBoxText, System.Drawing.Font? font, bool focused, System.Windows.Forms.VisualStyles.CheckBoxState state);

Parameters

g
Graphics

The Graphics used to draw the check box.

glyphLocation
Point

The Point to draw the check box glyph at.

textBounds
Rectangle

The Rectangle to draw checkBoxText in.

checkBoxText
String

The String to draw with the check box.

font
Font

The Font to apply to checkBoxText.

focused
Boolean

true to draw a focus rectangle; otherwise, false.

state
CheckBoxState

One of the CheckBoxState values that specifies the visual state of the check box.

Remarks

If visual styles are enabled in the operating system and visual styles are applied to the current application, this method will draw the check box with the current visual style. Otherwise, it will draw the check box with the classic Windows style.

Applies to

.NET Framework 4.8.1 y otras versiones
Producto Versiones
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

DrawCheckBox(Graphics, Point, Rectangle, String, Font, TextFormatFlags, Boolean, CheckBoxState)

Source:
CheckBoxRenderer.cs
Source:
CheckBoxRenderer.cs
Source:
CheckBoxRenderer.cs

Draws a check box control in the specified state and location, with the specified text and text formatting, and with an optional focus rectangle.

C#
public static void DrawCheckBox(System.Drawing.Graphics g, System.Drawing.Point glyphLocation, System.Drawing.Rectangle textBounds, string checkBoxText, System.Drawing.Font font, System.Windows.Forms.TextFormatFlags flags, bool focused, System.Windows.Forms.VisualStyles.CheckBoxState state);
C#
public static void DrawCheckBox(System.Drawing.Graphics g, System.Drawing.Point glyphLocation, System.Drawing.Rectangle textBounds, string? checkBoxText, System.Drawing.Font? font, System.Windows.Forms.TextFormatFlags flags, bool focused, System.Windows.Forms.VisualStyles.CheckBoxState state);

Parameters

g
Graphics

The Graphics used to draw the check box.

glyphLocation
Point

The Point to draw the check box glyph at.

textBounds
Rectangle

The Rectangle to draw checkBoxText in.

checkBoxText
String

The String to draw with the check box.

font
Font

The Font to apply to checkBoxText.

flags
TextFormatFlags

A bitwise combination of the TextFormatFlags values.

focused
Boolean

true to draw a focus rectangle; otherwise, false.

state
CheckBoxState

One of the CheckBoxState values that specifies the visual state of the check box.

Examples

The following code example uses the DrawCheckBox(Graphics, Point, Rectangle, String, Font, TextFormatFlags, Boolean, CheckBoxState) method in a custom control's OnPaint method to draw a check box in the state determined by the location of the mouse pointer. This code example is part of a larger example provided for the CheckBoxRenderer class.

C#
// Draw the check box in the current state.
protected override void OnPaint(PaintEventArgs e)
{
    base.OnPaint(e);

    CheckBoxRenderer.DrawCheckBox(e.Graphics,
        ClientRectangle.Location, TextRectangle, this.Text,
        this.Font, TextFormatFlags.HorizontalCenter,
        clicked, state);
}

// Draw the check box in the checked or unchecked state, alternately.
protected override void OnMouseDown(MouseEventArgs e)
{
    base.OnMouseDown(e);

    if (!clicked)
    {
        clicked = true;
        this.Text = "Clicked!";
        state = CheckBoxState.CheckedPressed;
        Invalidate();
    }
    else
    {
        clicked = false;
        this.Text = "Click here";
        state = CheckBoxState.UncheckedNormal;
        Invalidate();
    }
}

Remarks

If visual styles are enabled in the operating system and visual styles are applied to the current application, this method will draw the check box with the current visual style. Otherwise, it will draw the check box with the classic Windows style.

Applies to

.NET Framework 4.8.1 y otras versiones
Producto Versiones
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

DrawCheckBox(Graphics, Point, Rectangle, String, Font, Image, Rectangle, Boolean, CheckBoxState)

Source:
CheckBoxRenderer.cs
Source:
CheckBoxRenderer.cs
Source:
CheckBoxRenderer.cs

Draws a check box control in the specified state and location, with the specified text and image, and with an optional focus rectangle.

C#
public static void DrawCheckBox(System.Drawing.Graphics g, System.Drawing.Point glyphLocation, System.Drawing.Rectangle textBounds, string checkBoxText, System.Drawing.Font font, System.Drawing.Image image, System.Drawing.Rectangle imageBounds, bool focused, System.Windows.Forms.VisualStyles.CheckBoxState state);
C#
public static void DrawCheckBox(System.Drawing.Graphics g, System.Drawing.Point glyphLocation, System.Drawing.Rectangle textBounds, string? checkBoxText, System.Drawing.Font? font, System.Drawing.Image image, System.Drawing.Rectangle imageBounds, bool focused, System.Windows.Forms.VisualStyles.CheckBoxState state);

Parameters

g
Graphics

The Graphics used to draw the check box.

glyphLocation
Point

The Point to draw the check box glyph at.

textBounds
Rectangle

The Rectangle to draw checkBoxText in.

checkBoxText
String

The String to draw with the check box.

font
Font

The Font to apply to checkBoxText.

image
Image

The Image to draw with the check box.

imageBounds
Rectangle

The Rectangle that represents the dimensions of image.

focused
Boolean

true to draw a focus rectangle; otherwise, false.

state
CheckBoxState

One of the CheckBoxState values that specifies the visual state of the check box.

Remarks

If visual styles are enabled in the operating system and visual styles are applied to the current application, this method will draw the check box with the current visual style. Otherwise, it will draw the check box with the classic Windows style.

Applies to

.NET Framework 4.8.1 y otras versiones
Producto Versiones
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

DrawCheckBox(Graphics, Point, Rectangle, String, Font, TextFormatFlags, Image, Rectangle, Boolean, CheckBoxState)

Source:
CheckBoxRenderer.cs
Source:
CheckBoxRenderer.cs
Source:
CheckBoxRenderer.cs

Draws a check box control in the specified state and location; with the specified text, text formatting, and image; and with an optional focus rectangle.

C#
public static void DrawCheckBox(System.Drawing.Graphics g, System.Drawing.Point glyphLocation, System.Drawing.Rectangle textBounds, string checkBoxText, System.Drawing.Font font, System.Windows.Forms.TextFormatFlags flags, System.Drawing.Image image, System.Drawing.Rectangle imageBounds, bool focused, System.Windows.Forms.VisualStyles.CheckBoxState state);
C#
public static void DrawCheckBox(System.Drawing.Graphics g, System.Drawing.Point glyphLocation, System.Drawing.Rectangle textBounds, string? checkBoxText, System.Drawing.Font? font, System.Windows.Forms.TextFormatFlags flags, System.Drawing.Image image, System.Drawing.Rectangle imageBounds, bool focused, System.Windows.Forms.VisualStyles.CheckBoxState state);

Parameters

g
Graphics

The Graphics used to draw the check box.

glyphLocation
Point

The Point to draw the check box glyph at.

textBounds
Rectangle

The Rectangle to draw checkBoxText in.

checkBoxText
String

The String to draw with the check box.

font
Font

The Font to apply to checkBoxText.

flags
TextFormatFlags

A bitwise combination of the TextFormatFlags values.

image
Image

The Image to draw with the check box.

imageBounds
Rectangle

The Rectangle that represents the dimensions of image.

focused
Boolean

true to draw a focus rectangle; otherwise, false.

state
CheckBoxState

One of the CheckBoxState values that specifies the visual state of the check box.

Remarks

If visual styles are enabled in the operating system and visual styles are applied to the current application, this method will draw the check box with the current visual style. Otherwise, it will draw the check box with the classic Windows style.

Applies to

.NET Framework 4.8.1 y otras versiones
Producto Versiones
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10