SystemPens.WindowText 属性

定义

获取表示窗口工作区中文本颜色的 Pen

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

属性值

Pen

一个 Pen,它是窗口工作区中文本的颜色。

示例

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

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

适用于