SystemPens.InactiveCaptionText Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient un Pen qui correspond à la couleur du texte dans la barre de titre d'une fenêtre inactive.
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
Valeur de propriété
Pen qui est la couleur du texte dans la barre de titre d'une fenêtre inactive.
Exemples
L’exemple de code suivant montre comment utiliser la InactiveCaptionText propriété . Pour exécuter cet exemple, collez-le dans un Windows Form. Gérez l’événement du Paint formulaire et appelez la DrawWithInactiveCaptionTextPen
méthode à partir de la Paint méthode de gestion des événements, en passant e
comme 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