SystemPens.GrayText 属性

定义

获取表示禁用文本的颜色的 Pen

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

属性值

Pen

一个 Pen,它是浅灰色文本的颜色。

示例

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

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

End Sub

注解

列表中已禁用的项用浅灰色文本显示。

适用于