共用方式為


ToolWindow.OnToolWindowCreate 方法

接聽文件視窗中的框架變更

命名空間:  Microsoft.VisualStudio.Modeling.Shell
組件:  Microsoft.VisualStudio.Modeling.Sdk.Shell.12.0 (在 Microsoft.VisualStudio.Modeling.Sdk.Shell.12.0.dll 中)

語法

'宣告
Protected Overridable Sub OnToolWindowCreate
protected virtual void OnToolWindowCreate()

備註

當工具視窗建立時,這個方法會呼叫 OnCreate 方法。

衍生類別會通知,如果偵測到的變更,以及架構指派給所監視的文件視窗。

範例

下列範例會建立可讀取工具視窗的 [這是自訂工具視窗] 標籤。

protected override void OnToolWindowCreate()
{
     this.myLabel = new Label();
     this.myLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.myLabel.Text = "This is the custom tool window";
}

.NET Framework 安全性

請參閱

參考

ToolWindow 類別

Microsoft.VisualStudio.Modeling.Shell 命名空間