다음을 통해 공유


GroupBoxRenderer.RenderMatchingApplicationState 속성

정의

렌더러에서 애플리케이션 상태를 사용하여 렌더링 스타일을 결정하는지 여부를 나타내는 값을 가져오거나 설정합니다.

public:
 static property bool RenderMatchingApplicationState { bool get(); void set(bool value); };
public static bool RenderMatchingApplicationState { get; set; }
member this.RenderMatchingApplicationState : bool with get, set
Public Shared Property RenderMatchingApplicationState As Boolean

속성 값

Boolean

애플리케이션 상태를 사용하여 렌더링 스타일을 결정하면 true이고, 그렇지 않으면 false입니다. 기본값은 true입니다.

예제

다음 코드 예제에서는 RenderMatchingApplicationState 비주얼 스타일을 사용 하 여 그룹 상자는 렌더링 하는지 여부를 변경할 속성입니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 GroupBoxRenderer 클래스입니다.


// Match application style and toggle visual styles off
// and on for the application.
    private void button1_Click(object sender, EventArgs e)
    {
        GroupBoxRenderer.RenderMatchingApplicationState = true;
        Application.VisualStyleState = 
            Application.VisualStyleState ^ 
            VisualStyleState.ClientAndNonClientAreasEnabled;

        if (Application.RenderWithVisualStyles)
            this.Text = "Visual Styles Enabled";
        else
            this.Text = "Visual Styles Disabled";
    }
' Match application style and toggle visual styles off
' and on for the application.
Private Sub button1_Click(ByVal sender As Object, ByVal e As EventArgs) _
    Handles button1.Click

    GroupBoxRenderer.RenderMatchingApplicationState = True

    Application.VisualStyleState = _
        Application.VisualStyleState Xor _
        VisualStyleState.ClientAndNonClientAreasEnabled

    If Application.RenderWithVisualStyles Then
        Me.Text = "Visual Styles Enabled"
    Else
        Me.Text = "Visual Styles Disabled"
    End If

End Sub

설명

하는 경우 RenderMatchingApplicationState 됩니다 trueGroupBoxRenderer 에서 설정을 사용 하 여 Application.RenderWithVisualStyles 렌더링 스타일을 결정 합니다. 하는 경우 RenderMatchingApplicationStatefalse, 렌더러는 항상 비주얼 스타일을 사용 하 여 렌더링 합니다.

적용 대상