VisualStyleElement.StartPanel.MoreProgramsArrow Třída

Definice

Poskytuje VisualStyleElement objekty pro každý stav šipky Všechny programy v nabídce Start . Tato třída se nemůže dědit.

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

Příklady

Následující příklad kódu ukazuje, jak vytvořit VisualStyleRenderer s VisualStyleElement vrácenou Normal vlastností. Pokud chcete tento příklad spustit, vložte ho do formuláře Windows Form. Zpracování události formuláře Paint a volání DrawVisualStyleElementStartPanelMoreProgramsArrow1 metody z Paint metody zpracování událostí, předání e jako PaintEventArgs.

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

Poznámky

Každá vlastnost VisualStyleElement.StartPanel.MoreProgramsArrow třídy vrátí VisualStyleElement pro jiný stav šipky Všechny programy .

Vlastnosti

Hot

Získá vizuální styl element, který představuje všechny programy šipku v horkém stavu.

Normal

Získá vizuální styl element, který představuje všechny programy šipku v normálním stavu.

Pressed

Získá vizuální styl element, který představuje všechny programy šipku ve stisknutém stavu.

Platí pro

Viz také