Share via


VisualStyleElement.TrackBar.ThumbRight.Hot 屬性

定義

取得視覺化樣式項目,表示處於作用中狀態的右指追蹤列滑桿。

public:
 static property System::Windows::Forms::VisualStyles::VisualStyleElement ^ Hot { System::Windows::Forms::VisualStyles::VisualStyleElement ^ get(); };
public static System.Windows.Forms.VisualStyles.VisualStyleElement Hot { get; }
static member Hot : System.Windows.Forms.VisualStyles.VisualStyleElement
Public Shared ReadOnly Property Hot As VisualStyleElement

屬性值

VisualStyleElement,表示處於作用中狀態的右指追蹤列滑桿。

範例

下列程式碼範例示範如何使用 屬性所傳回的 Hot 建立 VisualStyleElementVisualStyleRenderer 。 若要執行此範例,請將它貼到 Windows Form 中。 處理表單的事件 Paint ,並從事件處理方法呼叫 DrawVisualStyleElementTrackBarThumbRight2 方法 Paint ,並 e 傳遞為 PaintEventArgs

public void DrawVisualStyleElementTrackBarThumbRight2(PaintEventArgs e)
{
    if (VisualStyleRenderer.IsElementDefined(
        VisualStyleElement.TrackBar.ThumbRight.Hot))
    {
        VisualStyleRenderer renderer =
             new VisualStyleRenderer(VisualStyleElement.TrackBar.ThumbRight.Hot);
        Rectangle rectangle1 = new Rectangle(10, 50, 50, 50);
        renderer.DrawBackground(e.Graphics, rectangle1);
        e.Graphics.DrawString("VisualStyleElement.TrackBar.ThumbRight.Hot",
             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));
}
Public Sub DrawVisualStyleElementTrackBarThumbRight2(ByVal e As PaintEventArgs)
    If (VisualStyleRenderer.IsElementDefined( _
     VisualStyleElement.TrackBar.ThumbRight.Hot)) Then
        Dim renderer As New VisualStyleRenderer _
          (VisualStyleElement.TrackBar.ThumbRight.Hot)
        Dim rectangle1 As New Rectangle(10, 50, 50, 50)
        renderer.DrawBackground(e.Graphics, rectangle1)
        e.Graphics.DrawString("VisualStyleElement.TrackBar.ThumbRight.Hot", _
          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

備註

您可以使用 VisualStyleElement 屬性傳回的 Hot 來建立 VisualStyleRenderer

適用於