SystemPens.Desktop プロパティ

定義

Windows デスクトップの色を表す Pen を取得します。

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

プロパティ値

Pen

Windows デスクトップの色を表す Pen

次のコード例では、 プロパティの使用方法 Desktop を示します。 この例を実行するには、Windows フォームに貼り付けます。 フォームPaintのイベントを処理し、イベント処理メソッドから メソッドをDrawWithControlDesktopPenPaint呼び出し、 を としてPaintEventArgs渡しますe

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

End Sub

適用対象