Bagikan melalui


SystemPens.WindowFrame Properti

Definisi

Mendapatkan yang merupakan Pen warna bingkai jendela.

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

Nilai Properti

Pen

Pen Yang merupakan warna bingkai jendela.

Contoh

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

Berlaku untuk