VisualStyleElement.Button.RadioButton.CheckedHot プロパティ
アセンブリ: System.Windows.Forms (system.windows.forms.dll 内)

チェックされた状態のホットなオプション ボタンを表す VisualStyleElement。


次のコード例は、CheckedHot プロパティから返された VisualStyleElement を使用して VisualStyleRenderer を作成する方法を示しています。この例を実行するには、コードを Windows フォームに貼り付けます。フォームの Paint イベントを処理し、e を PaintEventArgs として渡して、Paint イベント処理メソッドから DrawVisualStyleElement_Button_RadioButton6 メソッドを呼び出します。
Public Sub DrawVisualStyleElement_Button_RadioButton6(ByVal e As PaintEventArgs) If (VisualStyleRenderer.IsElementDefined( _ VisualStyleElement.Button.RadioButton.CheckedHot)) Then Dim renderer As New VisualStyleRenderer _ (VisualStyleElement.Button.RadioButton.CheckedHot) Dim rectangle1 As New Rectangle(10, 50, 50, 50) renderer.DrawBackground(e.Graphics, rectangle1) e.Graphics.DrawString("VisualStyleElement.Button.RadioButton.CheckedHot", _ Me.Font, Brushes.Black, New Point(10, 10)) Else e.Graphics.DrawString("This element is not defined in the current visual style.", _ Me.Font, Brushes.Black, New Point(10, 10)) End If End Sub
public void DrawVisualStyleElement_Button_RadioButton6(PaintEventArgs e) { if (VisualStyleRenderer.IsElementDefined( VisualStyleElement.Button.RadioButton.CheckedHot)) { VisualStyleRenderer renderer = new VisualStyleRenderer(VisualStyleElement.Button.RadioButton.CheckedHot); Rectangle rectangle1 = new Rectangle(10, 50, 50, 50); renderer.DrawBackground(e.Graphics, rectangle1); e.Graphics.DrawString("VisualStyleElement.Button.RadioButton.CheckedHot" , this.Font, Brushes.Black, new Point(10, 10)); } else e.Graphics.DrawString("This element is not defined in the current visual style.", this.Font, Brushes.Black, new Point(10, 10)); }

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からVisualStyleElement.Button.RadioButton.CheckedHot プロパティを検索する場合は、下記のリンクをクリックしてください。

- VisualStyleElement.Button.RadioButton.CheckedHot プロパティのページへのリンク