SystemPens.InactiveBorder Propriedade
Definição
public:
static property System::Drawing::Pen ^ InactiveBorder { System::Drawing::Pen ^ get(); };
public static System.Drawing.Pen InactiveBorder { get; }
member this.InactiveBorder : System.Drawing.Pen
Public Shared ReadOnly Property InactiveBorder As Pen
Valor da propriedade
Uma Pen que é a cor da borda de uma janela inativa.A Pen that is the color of the border of an inactive window.
Exemplos
O exemplo de código a seguir demonstra como usar a InactiveBorder propriedade.The following code example demonstrates how to use the InactiveBorder property. Para executar este exemplo, Cole-o em um Windows Form.To run this example, paste it into a Windows Form. Manipule o evento do formulário Paint e chame o DrawWithInactiveBorderPen método do Paint método de manipulação de eventos, passando e como PaintEventArgs .Handle the form's Paint event and call the DrawWithInactiveBorderPen method from the Paint event-handling method, passing e as 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