IDTExtensibility2.OnStartupComplete 方法
當設定成 Visual Studio 啟動時應跟著載入的增益集真正被載入時,就會觸發此事件。
命名空間: Extensibility
組件: Extensibility (在 Extensibility.dll 中)
語法
'宣告
Sub OnStartupComplete ( _
ByRef custom As Array _
)
void OnStartupComplete(
ref Array custom
)
void OnStartupComplete(
[InAttribute] Array^% custom
)
abstract OnStartupComplete :
custom:Array byref -> unit
function OnStartupComplete(
custom : Array
)
參數
- custom
型別:System.Array%
空白陣列,可用來傳遞增益集載入時所使用的裝載特定資料。
備註
有時候 OnConnection 發生的時機並不正確,例如增益集已經載入,但該增益集所需的元件尚未載入。 這種情況通常是因為 Visual Studio 尚未完全啟動所造成, 建議最好使用 OnStartupComplete 檢查 Visual Studio 整合式開發環境 (IDE) 的啟動程序是否已經全部完成。
範例
Public Sub OnStartupComplete(ByRef custom As Array) Implements _
IDTExtensibility2.OnStartupComplete
MsgBox("Notifies you when an add-in that is set to start when _
Visual Studio starts has completed loading.")
End Sub
public void OnStartupComplete(ref Array custom)
{
// Notifies you when an add-in that is set to start when
// Visual Studio starts has completed loading.
System.Windows.Forms.MessageBox.Show("Add-in has loaded and is
ready.");
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。