ToolBox 介面
更新:2007 年 11 月
表示整合式開發環境 (IDE) 中的 [工具箱]。
命名空間: EnvDTE
組件: EnvDTE (在 EnvDTE.dll 中)
語法
<GuidAttribute("56FCD5AF-7F17-4C5C-AA8D-AE2BB2DDBF38")> _
Public Interface ToolBox
Dim instance As ToolBox
[GuidAttribute("56FCD5AF-7F17-4C5C-AA8D-AE2BB2DDBF38")]
public interface ToolBox
[GuidAttribute(L"56FCD5AF-7F17-4C5C-AA8D-AE2BB2DDBF38")]
public interface class ToolBox
public interface ToolBox
備註
Window 物件代表 [工具箱] 的視窗。ToolBox 包含 ToolBoxTab 物件的集合,例如控制項。在 [工具箱] 索引標籤中的個別項目是由 ToolBoxItem 物件表示。
名為 [剪貼簿] 的特殊索引標籤包含最後 15 個被剪下或複製到剪貼簿的項目。
在 IDE 中只有一個 ToolBox 物件。
範例
Sub ToolboxExample()
' Define the variables and create an object reference to the IDE's
' ToolBox object.
Dim win As Window = DTE.Windows.Item(Constants.vsWindowKindToolbox)
Dim tlBox As ToolBox = win.Object
Dim tbxTabs As ToolBoxTabs
' Create an object reference to the ToolBoxTabs object.
tbxTabs = tlBox.ToolBoxTabs
' Now you can manipulate the ToolBox.
' List the total number of tabs in the ToolBox.
MsgBox("Number of ToolBox tabs: " & tbxTabs.Count)
End Sub