GroupBoxRenderer.RenderMatchingApplicationState 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
렌더러에서 애플리케이션 상태를 사용하여 렌더링 스타일을 결정하는지 여부를 나타내는 값을 가져오거나 설정합니다.
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
속성 값
애플리케이션 상태를 사용하여 렌더링 스타일을 결정하면 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 됩니다 true
의 GroupBoxRenderer 에서 설정을 사용 하 여 Application.RenderWithVisualStyles 렌더링 스타일을 결정 합니다. 하는 경우 RenderMatchingApplicationState 는 false
, 렌더러는 항상 비주얼 스타일을 사용 하 여 렌더링 합니다.