VisualStyleElement.StartPanel.MoreProgramsArrow.Hot Proprietà

Definizione

Ottiene un elemento dello stile di visualizzazione che rappresenta la freccia Tutti i programmi nello stato attivo.

public static System.Windows.Forms.VisualStyles.VisualStyleElement Hot { get; }

Valore della proprietà

Oggetto VisualStyleElement che rappresenta la freccia Tutti i programmi nello stato attivo.

Esempio

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

public void DrawVisualStyleElementStartPanelMoreProgramsArrow2(PaintEventArgs e)
{
    if (VisualStyleRenderer.IsElementDefined(
        VisualStyleElement.StartPanel.MoreProgramsArrow.Hot))
    {
        VisualStyleRenderer renderer =
             new VisualStyleRenderer(VisualStyleElement.StartPanel.MoreProgramsArrow.Hot);
        Rectangle rectangle1 = new Rectangle(10, 50, 50, 50);
        renderer.DrawBackground(e.Graphics, rectangle1);
        e.Graphics.DrawString("VisualStyleElement.StartPanel.MoreProgramsArrow.Hot",
             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));
}

Commenti

È possibile usare l'oggetto VisualStyleElementHot restituito dalla proprietà per creare un VisualStyleRendereroggetto .

Si applica a

Prodotto Versioni
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9