VisualStyleElement.StartPanel.PlaceListSeparator Clase

Definición

Proporciona un elemento VisualStyleElement para la barra que separa grupos de elementos en la parte derecha del menú Iniciar. Esta clase no puede heredarse.

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

Ejemplos

En el ejemplo de código siguiente se muestra cómo crear un VisualStyleRenderer objeto con el VisualStyleElement devuelto por la Normal propiedad . Para ejecutar este ejemplo, péguelo en un formulario Windows Forms. Controle el evento del Paint formulario y llame al DrawVisualStyleElementStartPanelPlaceListSeparator1 método desde el Paint método de control de eventos, pasando e como 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

Comentarios

La Normal propiedad de la VisualStyleElement.StartPanel.PlaceListSeparator clase devuelve un VisualStyleElement que representa la barra que separa grupos de elementos en el lado derecho del menú Inicio .

Propiedades

Normal

Obtiene un elemento de estilo visual que representa la barra que separa grupos de elementos en la parte derecha del menú Iniciar.

Se aplica a

Consulte también