SystemPens.GrayText 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得 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,為暗灰色文字的色彩。
範例
下列程式代碼範例示範如何使用 GrayText 屬性。 若要執行此範例,請將它貼到 Windows Form 中。 處理表單的事件 Paint ,並從事件處理方法呼叫 DrawWithGrayTextPen
方法 Paint ,並 e
傳遞為 PaintEventArgs。
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
備註
清單中停用的項目會以暗灰色的文字來顯示。