Bagikan melalui


SystemPens.Desktop Properti

Definisi

Pen Mendapatkan yang merupakan warna desktop 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

Nilai Properti

Pen

Yang Pen merupakan warna desktop Windows.

Contoh

Contoh kode berikut menunjukkan cara menggunakan Desktop properti . Untuk menjalankan contoh ini, tempelkan ke dalam Formulir Windows. Tangani peristiwa formulir Paint dan panggil DrawWithControlDesktopPen metode dari Paint metode penanganan peristiwa, meneruskan e sebagai 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

Berlaku untuk