VisualStyleElement.TreeView.Glyph Class

Definition

Provides VisualStyleElement objects for the plus sign (+) and minus sign (-) buttons of a tree view control. This class cannot be inherited.

public: ref class VisualStyleElement::TreeView::Glyph abstract sealed
public static class VisualStyleElement.TreeView.Glyph
type VisualStyleElement.TreeView.Glyph = class
Public Class VisualStyleElement.TreeView.Glyph
Inheritance
VisualStyleElement.TreeView.Glyph

Examples

The following code example demonstrates how to create a VisualStyleRenderer with the VisualStyleElement returned by the Opened property. To run this example, paste it into a Windows Form. Handle the form's Paint event and call the DrawVisualStyleElementTreeViewGlyph1 method from the Paint event-handling method, passing e as 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

Remarks

The properties of the VisualStyleElement.TreeView.Glyph class get a VisualStyleElement for the plus sign and minus sign buttons that display next to a tree view node that contains child elements.

Properties

Closed

Gets a visual style element that represents a minus sign (-) button of a tree view node.

Opened

Gets a visual style element that represents a plus sign (+) button of a tree view node.

Applies to

See also