CheckBox.Appearance Property

Definition

Gets or sets the value that determines the appearance of a CheckBox control.

C#
public System.Windows.Forms.Appearance Appearance { get; set; }

Property Value

One of the Appearance values. The default value is Normal.

Exceptions

The value assigned is not one of the Appearance values.

Examples

The following code example creates and initializes a CheckBox, gives it the appearance of a toggle button, sets AutoCheck to false, and adds it to a Form.

C#
public void InstantiateMyCheckBox()
 {
    // Create and initialize a CheckBox.   
    CheckBox checkBox1 = new CheckBox(); 
    
    // Make the check box control appear as a toggle button.
    checkBox1.Appearance = Appearance.Button;
 
    // Turn off the update of the display on the click of the control.
    checkBox1.AutoCheck = false;
 
    // Add the check box control to the form.
    Controls.Add(checkBox1);
 }

Remarks

If Appearance value is set to Normal, the CheckBox has a typical appearance. If the value is set to Button, the CheckBox appears like a toggle button, which can be toggled to an up or down state.

Applies to

Produkt Verzie
.NET Framework 1.1, 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

See also