VisualStyleElement.Rebar.ChevronVertical Sınıf

Tanım

Köşeli VisualStyleElement çift ayraçların her durumu için nesneler sağlar. Bu sınıf devralınamaz.

public: ref class VisualStyleElement::Rebar::ChevronVertical abstract sealed
public static class VisualStyleElement.Rebar.ChevronVertical
type VisualStyleElement.Rebar.ChevronVertical = class
Public Class VisualStyleElement.Rebar.ChevronVertical
Devralma
VisualStyleElement.Rebar.ChevronVertical

Örnekler

Aşağıdaki kod örneği, özelliği tarafından Normal döndürülen ile VisualStyleElement nasıl oluşturulacağını VisualStyleRenderer gösterir. Bu örneği çalıştırmak için windows formuna yapıştırın. Formun Paint olayını işleyip yöntemini olay işleme yönteminden Paint olarak geçirerek çağırın eDrawVisualStyleElementRebarChevronVertical1PaintEventArgs.

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

Açıklamalar

sınıfının her özelliği VisualStyleElement.Rebar.ChevronVertical , bir köşeli çift ayraç farklı bir durum için bir döndürür VisualStyleElement .

Özellikler

Hot

Etkin köşeli çift ayraç temsil eden görsel stil öğesini alır.

Normal

Normal köşeli çift ayraç temsil eden görsel stil öğesini alır.

Pressed

Basılan köşeli çift ayraç temsil eden görsel stil öğesini alır.

Şunlara uygulanır

Ayrıca bkz.