Udostępnij za pośrednictwem


SystemPens.InactiveCaptionText Właściwość

Definicja

Pen Pobiera kolor tekstu na pasku tytułu nieaktywnego okna.

public:
 static property System::Drawing::Pen ^ InactiveCaptionText { System::Drawing::Pen ^ get(); };
public static System.Drawing.Pen InactiveCaptionText { get; }
static member InactiveCaptionText : System.Drawing.Pen
Public Shared ReadOnly Property InactiveCaptionText As Pen

Wartość właściwości

Pen

Kolor Pen tekstu na pasku tytułu okna nieaktywnego.

Przykłady

W poniższym przykładzie kodu pokazano, jak używać InactiveCaptionText właściwości. Aby uruchomić ten przykład, wklej go do formularza systemu Windows. Obsłuż zdarzenie formularza Paint i wywołaj DrawWithInactiveCaptionTextPen metodę z Paint metody obsługi zdarzeń, przekazując e jako PaintEventArgs.

private void DrawWithInactiveCaptionTextPen(PaintEventArgs e)
{
    Rectangle rectangle1 = new Rectangle(10, 10, 100, 100);
    e.Graphics.DrawRectangle(SystemPens.InactiveCaptionText, rectangle1);
}
Private Sub DrawWithInactiveCaptionTextPen(ByVal e As PaintEventArgs) 
    Dim rectangle1 As New Rectangle(10, 10, 100, 100)
    e.Graphics.DrawRectangle(SystemPens.InactiveCaptionText, rectangle1)

End Sub

Dotyczy