SystemPens.InactiveBorder Properti
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Mendapat adalah Pen warna batas jendela yang tidak aktif.
public:
static property System::Drawing::Pen ^ InactiveBorder { System::Drawing::Pen ^ get(); };
public static System.Drawing.Pen InactiveBorder { get; }
static member InactiveBorder : System.Drawing.Pen
Public Shared ReadOnly Property InactiveBorder As Pen
Nilai Properti
Pen yang merupakan warna batas jendela yang tidak aktif.
Contoh
Contoh kode berikut menunjukkan cara menggunakan InactiveBorder properti . Untuk menjalankan contoh ini, tempelkan ke dalam Formulir Windows. Tangani peristiwa formulir Paint dan panggil DrawWithInactiveBorderPen
metode dari Paint metode penanganan peristiwa, meneruskan e
sebagai PaintEventArgs.
private void DrawWithInactiveBorderPen(PaintEventArgs e)
{
Rectangle rectangle1 = new Rectangle(10, 10, 100, 100);
e.Graphics.DrawRectangle(SystemPens.InactiveBorder, rectangle1);
}
Private Sub DrawWithInactiveBorderPen(ByVal e As PaintEventArgs)
Dim rectangle1 As New Rectangle(10, 10, 100, 100)
e.Graphics.DrawRectangle(SystemPens.InactiveBorder, rectangle1)
End Sub