共用方式為


Debugger.Parent 屬性

取得 Debugger 物件的直屬父物件。

命名空間:  EnvDTE
組件:  EnvDTE (在 EnvDTE.dll 中)

語法

'宣告
ReadOnly Property Parent As DTE
DTE Parent { get; }
property DTE^ Parent {
    DTE^ get ();
}
abstract Parent : DTE
function get Parent () : DTE

屬性值

型別:EnvDTE.DTE
DTE 物件。

備註

Parent 屬性將直接上層父代傳回這個物件。

範例

下列範例示範如何使用 Parent 屬性。

若要測試這個屬性:

  1. 開啟目標專案並執行增益集。
public static void Parent(DTE dte)
{
    // Setup the debug Output window.
    Window w = (Window)dte.Windows.Item(EnvDTE.Constants.vsWindowKindOutput);
    w.Visible = true;
    OutputWindow ow = (OutputWindow)w.Object;
    OutputWindowPane owp = ow.OutputWindowPanes.Add("Parent Property Test");
    owp.Activate();
    EnvDTE.Debugger debugger = dte.Debugger;
    owp.OutputString("The name of the debugger parent: " + debugger.Parent.Name);
}
Shared Sub ParentProperty(ByRef dte As EnvDTE.DTE)
    MessageBox.Show("The name of the debugger parent: " + dte.Debugger.Parent.Name, _
                    "Debugger Test - Parent Property Test")
End Sub

.NET Framework 安全性

請參閱

參考

Debugger 介面

EnvDTE 命名空間

其他資源

HOW TO:編譯和執行 Automation 物件模型程式碼範例