Sdílet prostřednictvím


SystemPens.InactiveBorder Vlastnost

Definice

Pen Získá a je barva ohraničení neaktivního okna.

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

Hodnota vlastnosti

Pen

A Pen to je barva ohraničení neaktivního okna.

Příklady

Následující příklad kódu ukazuje, jak použít InactiveBorder vlastnost. Pokud chcete tento příklad spustit, vložte ho do formuláře Windows Form. Zpracování události formuláře Paint a volání DrawWithInactiveBorderPen metody z Paint metody zpracování událostí, předání e jako 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

Platí pro