Share via


VisualStyleElement.Rebar.Gripper 類別

定義

針對水平 Rebar 控制項的移駐夾列 (Gripper Bar) 提供 VisualStyleElement。 此類別無法獲得繼承。

public: ref class VisualStyleElement::Rebar::Gripper abstract sealed
public static class VisualStyleElement.Rebar.Gripper
type VisualStyleElement.Rebar.Gripper = class
Public Class VisualStyleElement.Rebar.Gripper
繼承
VisualStyleElement.Rebar.Gripper

範例

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

public void DrawVisualStyleElementRebarGripper1(PaintEventArgs e)
{
    if (VisualStyleRenderer.IsElementDefined(
        VisualStyleElement.Rebar.Gripper.Normal))
    {
        VisualStyleRenderer renderer =
             new VisualStyleRenderer(VisualStyleElement.Rebar.Gripper.Normal);
        Rectangle rectangle1 = new Rectangle(10, 50, 50, 50);
        renderer.DrawBackground(e.Graphics, rectangle1);
        e.Graphics.DrawString("VisualStyleElement.Rebar.Gripper.Normal",
             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 DrawVisualStyleElementRebarGripper1(ByVal e As PaintEventArgs)
    If (VisualStyleRenderer.IsElementDefined( _
     VisualStyleElement.Rebar.Gripper.Normal)) Then
        Dim renderer As New VisualStyleRenderer _
          (VisualStyleElement.Rebar.Gripper.Normal)
        Dim rectangle1 As New Rectangle(10, 50, 50, 50)
        renderer.DrawBackground(e.Graphics, rectangle1)
        e.Graphics.DrawString("VisualStyleElement.Rebar.Gripper.Normal", _
          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

備註

類別 NormalVisualStyleElement.Rebar.Gripper 屬性會傳回 , VisualStyleElement 代表水準 Rebar 的移轉夾列。

屬性

Normal

取得視覺化樣式項目,表示水平 Rebar 的移駐夾列。

適用於

另請參閱