Share via


VisualStyleElement.ScrollBar.ArrowButton.DownNormal 屬性

定義

取得視覺化樣式項目,表示處於正常狀態的下指捲動箭號。

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

屬性值

VisualStyleElement,表示處於正常狀態的下指捲動箭號。

範例

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

public void DrawVisualStyleElementScrollBarArrowButton5(PaintEventArgs e)
{
    if (VisualStyleRenderer.IsElementDefined(
        VisualStyleElement.ScrollBar.ArrowButton.DownNormal))
    {
        VisualStyleRenderer renderer =
             new VisualStyleRenderer(VisualStyleElement.ScrollBar.ArrowButton.DownNormal);
        Rectangle rectangle1 = new Rectangle(10, 50, 50, 50);
        renderer.DrawBackground(e.Graphics, rectangle1);
        e.Graphics.DrawString("VisualStyleElement.ScrollBar.ArrowButton.DownNormal",
             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 DrawVisualStyleElementScrollBarArrowButton5(ByVal e As PaintEventArgs)
    If (VisualStyleRenderer.IsElementDefined( _
     VisualStyleElement.ScrollBar.ArrowButton.DownNormal)) Then
        Dim renderer As New VisualStyleRenderer _
          (VisualStyleElement.ScrollBar.ArrowButton.DownNormal)
        Dim rectangle1 As New Rectangle(10, 50, 50, 50)
        renderer.DrawBackground(e.Graphics, rectangle1)
        e.Graphics.DrawString("VisualStyleElement.ScrollBar.ArrowButton.DownNormal", _
          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 屬性傳回的 DownNormal 來建立 VisualStyleRenderer

適用於