Condividi tramite


SystemPens.Desktop Proprietà

Definizione

Ottiene un oggetto Pen che corrisponde al colore del desktop di Windows.

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

Valore della proprietà

Pen

Oggetto Pen che corrisponde al colore del desktop di Windows.

Esempio

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

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

End Sub

Si applica a