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 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。