SystemPens.InfoText 属性

定义

获取表示工具提示的文本颜色的 Pen

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

属性值

Pen

一个 Pen,它是工具提示的文本的颜色。

示例

下面的代码示例演示如何使用 InfoText 属性。 若要运行此示例,请将其粘贴到 Windows 窗体中。 处理窗体的事件Paint,并从Paint事件处理方法调用 DrawWithInfoTextPen 方法,作为 ePaintEventArgs传递。

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

适用于