SystemPens.ControlText 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 d'un élément 3D.
public:
static property System::Drawing::Pen ^ ControlText { System::Drawing::Pen ^ get(); };
public static System.Drawing.Pen ControlText { get; }
static member ControlText : System.Drawing.Pen
Public Shared ReadOnly Property ControlText As Pen
Valeur de propriété
Pen qui correspond à la couleur du texte d'un élément 3D.
Exemples
L’exemple de code suivant montre comment utiliser la ControlText propriété . Pour exécuter cet exemple, collez-le dans un Windows Form. Gérez l’événement du Paint formulaire et appelez la DrawWithControlTextPen
méthode à partir de la Paint méthode de gestion des événements, en passant comme e
PaintEventArgs.
private void DrawWithControlTextPen(PaintEventArgs e)
{
Rectangle rectangle1 = new Rectangle(10, 10, 100, 100);
e.Graphics.DrawRectangle(SystemPens.ControlText, rectangle1);
}
Private Sub DrawWithControlTextPen(ByVal e As PaintEventArgs)
Dim rectangle1 As New Rectangle(10, 10, 100, 100)
e.Graphics.DrawRectangle(SystemPens.ControlText, rectangle1)
End Sub