Aracılığıyla paylaş


SystemPens.InfoText Özellik

Tanım

Pen Araç İpucu metninin rengi olan bir alır.

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

Özellik Değeri

Pen

Pen Araç İpucu metninin rengi olan bir.

Örnekler

Aşağıdaki kod örneği özelliğinin InfoText nasıl kullanılacağını gösterir. Bu örneği çalıştırmak için windows formuna yapıştırın. Formun Paint olayını işleyip olarak geçirerek olay işleme yönteminden Paint yöntemini çağırın eDrawWithInfoTextPenPaintEventArgs.

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

End Sub

Şunlara uygulanır