RadioButtonRenderer.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 使用して、アプリケーションの状態に応じてレンダリング スタイルが変更されていることを示します。 このコード例は、RadioButtonRenderer クラスのために提供されている大規模な例の一部です。
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";
}
' 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
RadioButtonRenderer.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
プロパティの RadioButtonRenderer 設定を Application.RenderWithVisualStyles 使用してレンダリング スタイルが決定されます。 その場合 RenderMatchingApplicationState 、 false
レンダラーは常にビジュアル スタイルを使用してレンダリングされます。