Share via


ToolWindows.DTE 屬性

取得最上層的擴充性物件。

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

語法

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

屬性值

型別:EnvDTE.DTE
DTE 物件。

備註

在 Visual Studio 中,DTE 物件是 Automation 模型的根物件,Automation 物件在其他物件模型中通常稱為「應用程式」。

範例

這個範例會示範如何從 TollWindows 物件抵達 DTE 父物件。 如需如何像執行增益集一般,執行這個範例的詳細資訊,請參閱 HOW TO:編譯和執行 Automation 物件模型程式碼範例

Imports EnvDTE
Imports EnvDTE80
Public Sub OnConnection(ByVal application As Object, _
 ByVal connectMode As ext_ConnectMode, ByVal addInInst As Object, _
 ByRef custom As Array) Implements IDTExtensibility2.OnConnection
    _applicationObject = CType(application, DTE2)
    _addInInstance = CType(addInInst, AddIn)
    CommandWindowManip(_applicationObject)
End Sub
Public Sub CommandWindowManip(ByVal dte As DTE2)
    Dim myCmd As CommandWindow
    myCmd = _applicationObject.ToolWindows.CommandWindow
    MsgBox("The command count, obtained through the parent DTE object _
    , is : " & myCmd.DTE.Commands.Count)
End Sub
using EnvDTE;
using EnvDTE80;
using System.Windows.Forms;
public void OnConnection(object application,
 ext_ConnectMode connectMode, object addInInst, ref Array custom)
{
    _applicationObject = (DTE2)application;
    _addInInstance = (AddIn)addInInst;
    CommandWindowManip(_applicationObject);
}
public void CommandWindowManip (DTE2 dte)
{
    CommandWindow myCmd;
    myCmd = _applicationObject.ToolWindows.CommandWindow;
    MessageBox.Show("The command count, obtained through the parent
 DTE object, is : " + myCmd.DTE.Commands.Count);
}

.NET Framework 安全性

請參閱

參考

ToolWindows 介面

EnvDTE80 命名空間