Condividi tramite


SystemPens.WindowFrame Proprietà

Definizione

Ottiene un oggetto Pen che corrisponde al colore del frame di una finestra.

public:
 static property System::Drawing::Pen ^ WindowFrame { System::Drawing::Pen ^ get(); };
public static System.Drawing.Pen WindowFrame { get; }
static member WindowFrame : System.Drawing.Pen
Public Shared ReadOnly Property WindowFrame As Pen

Valore della proprietà

Pen

Oggetto Pen che corrisponde al colore del frame di una finestra.

Esempio

Nell'esempio di codice seguente viene illustrato come usare la WindowFrame proprietà. Per eseguire questo esempio, incollarlo in un Windows Form. Gestire l'evento del modulo e chiamare il DrawWithWindowFramePen metodo dal Paint metodo di gestione degli Paint eventi, passando e come PaintEventArgs.

private void DrawWithWindowFramePen(PaintEventArgs e)
{
    Rectangle rectangle1 = new Rectangle(10, 10, 100, 100);
    e.Graphics.DrawRectangle(SystemPens.WindowFrame, rectangle1);
}
Private Sub DrawWithWindowFramePen(ByVal e As PaintEventArgs) 
    Dim rectangle1 As New Rectangle(10, 10, 100, 100)
    e.Graphics.DrawRectangle(SystemPens.WindowFrame, rectangle1)

End Sub

Si applica a