VisualStyleElement.TreeView.Glyph Třída

Definice

Poskytuje VisualStyleElement objekty pro znaménko plus (+) a znaménko minus (-) ovládacího prvku stromového zobrazení. Tato třída se nemůže dědit.

public: ref class VisualStyleElement::TreeView::Glyph abstract sealed
public static class VisualStyleElement.TreeView.Glyph
type VisualStyleElement.TreeView.Glyph = class
Public Class VisualStyleElement.TreeView.Glyph
Dědičnost
VisualStyleElement.TreeView.Glyph

Příklady

Následující příklad kódu ukazuje, jak vytvořit VisualStyleRenderer s VisualStyleElement vrácenou Opened vlastností . Pokud chcete spustit tento příklad, vložte ho do formuláře Windows Form. Zpracujte Paint událost formuláře a zavolejte metodu DrawVisualStyleElementTreeViewGlyph1Paint z metody zpracování událostí a předejte e ji jako PaintEventArgs.

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

Poznámky

Vlastnosti VisualStyleElement.TreeView.Glyph třídy získat VisualStyleElement pro znaménko plus a mínus znaménko tlačítka, která se zobrazí vedle uzlu stromového zobrazení, který obsahuje podřízené prvky.

Vlastnosti

Closed

Získá prvek vizuálního stylu, který představuje znaménko minus (-) tlačítko uzlu stromového zobrazení.

Opened

Získá prvek vizuálního stylu, který představuje znaménko plus (+) tlačítko uzlu stromového zobrazení.

Platí pro

Viz také