Auf Englisch lesen Bearbeiten

Freigeben über


RadioButtonRenderer.RenderMatchingApplicationState Property

Definition

Gets or sets a value indicating whether the renderer uses the application state to determine rendering style.

public static bool RenderMatchingApplicationState { get; set; }

Property Value

true if the application state is used to determine rendering style; otherwise, false. The default is true.

Examples

The following code example uses the RenderMatchingApplicationState property to show the render style is changed depending on the application state. This code example is part of a larger example provided for the RadioButtonRenderer class.

private void button1_Click(object sender, EventArgs e)
{
    Application.VisualStyleState =
        Application.VisualStyleState ^
        VisualStyleState.ClientAndNonClientAreasEnabled;

    GroupBoxRenderer.RenderMatchingApplicationState = true;
    if (Application.RenderWithVisualStyles)
        this.Text = "Visual Styles Enabled";
    else
        this.Text = "Visual Styles Disabled";
}

Remarks

If the RenderMatchingApplicationState property is true, the RadioButtonRenderer uses the setting from the Application.RenderWithVisualStyles property to determine the rendering style. If RenderMatchingApplicationState is false, the renderer will always render using visual styles.

Applies to

Produkt Versionen
.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