VisualStyleElement.Rebar.Chevron Classe

Definizione

Specifica oggetti VisualStyleElement per ogni stato di una freccia di espansione orizzontale. La classe non può essere ereditata.

public: ref class VisualStyleElement::Rebar::Chevron abstract sealed
public static class VisualStyleElement.Rebar.Chevron
type VisualStyleElement.Rebar.Chevron = class
Public Class VisualStyleElement.Rebar.Chevron
Ereditarietà
VisualStyleElement.Rebar.Chevron

Esempio

Nell'esempio di codice seguente viene illustrato come creare un VisualStyleRenderer oggetto con la VisualStyleElement proprietà restituita.Normal Per eseguire questo esempio, incollarlo in un Windows Form. Gestire l'evento del modulo e chiamare il DrawVisualStyleElementRebarChevron1 metodo dal Paint metodo di gestione degli Paint eventi, passando e come PaintEventArgs.

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

Commenti

Ogni proprietà della VisualStyleElement.Rebar.Chevron classe restituisce un oggetto VisualStyleElement per uno stato diverso di un chevron orizzontale.

Proprietà

Hot

Ottiene un elemento dello stile di visualizzazione che rappresenta una freccia di espansione attiva.

Normal

Ottiene un elemento dello stile di visualizzazione che rappresenta una freccia di espansione normale.

Pressed

Ottiene un elemento dello stile di visualizzazione che rappresenta una freccia di espansione premuta.

Si applica a

Vedi anche