VisualStyleElement.StartPanel.PlaceListSeparator Classe

Definizione

Specifica un oggetto VisualStyleElement per la barra che separa gruppi di voci sul lato destro del menu Start. La classe non può essere ereditata.

public: ref class VisualStyleElement::StartPanel::PlaceListSeparator abstract sealed
public static class VisualStyleElement.StartPanel.PlaceListSeparator
type VisualStyleElement.StartPanel.PlaceListSeparator = class
Public Class VisualStyleElement.StartPanel.PlaceListSeparator
Ereditarietà
VisualStyleElement.StartPanel.PlaceListSeparator

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 DrawVisualStyleElementStartPanelPlaceListSeparator1 metodo dal Paint metodo di gestione degli Paint eventi, passando e come PaintEventArgs.

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

La Normal proprietà della VisualStyleElement.StartPanel.PlaceListSeparator classe restituisce un oggetto VisualStyleElement che rappresenta la barra che separa i gruppi di elementi nel lato destro del menu Start .

Proprietà

Normal

Ottiene un elemento dello stile di visualizzazione che rappresenta la barra che separa gruppi di voci sul lato destro del menu Start.

Si applica a

Vedi anche