VisualStyleElement.Window.RestoreButton Classe

Definizione

Specifica oggetti VisualStyleElement per ogni stato del pulsante Ripristina di una finestra. La classe non può essere ereditata.

public: ref class VisualStyleElement::Window::RestoreButton abstract sealed
public static class VisualStyleElement.Window.RestoreButton
type VisualStyleElement.Window.RestoreButton = class
Public Class VisualStyleElement.Window.RestoreButton
Ereditarietà
VisualStyleElement.Window.RestoreButton

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

public void DrawVisualStyleElementWindowRestoreButton1(PaintEventArgs e)
{
    if (VisualStyleRenderer.IsElementDefined(
        VisualStyleElement.Window.RestoreButton.Normal))
    {
        VisualStyleRenderer renderer =
             new VisualStyleRenderer(VisualStyleElement.Window.RestoreButton.Normal);
        Rectangle rectangle1 = new Rectangle(10, 50, 50, 50);
        renderer.DrawBackground(e.Graphics, rectangle1);
        e.Graphics.DrawString("VisualStyleElement.Window.RestoreButton.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 DrawVisualStyleElementWindowRestoreButton1(ByVal e As PaintEventArgs)
    If (VisualStyleRenderer.IsElementDefined( _
     VisualStyleElement.Window.RestoreButton.Normal)) Then
        Dim renderer As New VisualStyleRenderer _
          (VisualStyleElement.Window.RestoreButton.Normal)
        Dim rectangle1 As New Rectangle(10, 50, 50, 50)
        renderer.DrawBackground(e.Graphics, rectangle1)
        e.Graphics.DrawString("VisualStyleElement.Window.RestoreButton.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.Window.RestoreButton classe restituisce un oggetto VisualStyleElement per uno stato diverso del pulsante Restore di una finestra.

Proprietà

Disabled

Ottiene un elemento dello stile di visualizzazione che rappresenta un pulsante Ripristina nello stato disabilitato.

Hot

Ottiene un elemento dello stile di visualizzazione che rappresenta un pulsante Ripristina nello stato attivo.

Normal

Ottiene un elemento dello stile di visualizzazione che rappresenta un pulsante Ripristina nello stato normale.

Pressed

Ottiene un elemento dello stile di visualizzazione che rappresenta un pulsante Ripristina nello stato premuto.

Si applica a

Vedi anche