SystemPens.ControlText Proprietà

Definizione

Ottiene un oggetto Pen che corrisponde al colore del testo di un elemento 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

Valore della proprietà

Pen

Oggetto Pen che corrisponde al colore del testo di un elemento 3D.

Esempio

Nell'esempio di codice seguente viene illustrato come usare la ControlText proprietà. Per eseguire questo esempio, incollarlo in un Windows Form. Gestire l'evento del modulo e chiamare il DrawWithControlTextPen metodo dal Paint metodo di gestione degli Paint eventi, passando e come 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

Si applica a