共用方式為


SystemPens.AppWorkspace 屬性

定義

取得 Pen,這是應用程式工作區的色彩。

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

屬性值

Pen

Pen,為應用程式工作區的色彩。

範例

下列程式代碼範例示範如何使用 AppWorkspace 屬性。 若要執行此範例,請將它貼到 Windows Form 中。 處理表單的事件 Paint ,並從事件處理方法呼叫 DrawWithActiveAppWorkspacePen 方法 Paint ,並傳遞 ePaintEventArgs

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

End Sub

備註

應用程式工作區是多個文件檢視中未由檔佔用的區域。

適用於