共用方式為


ToolBoxTab.ListView 屬性

取得或設定值,指出特定 [工具箱] 索引標籤中的項目是否以 [清單] 檢視或 [圖示] 檢視的格式顯示。

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

語法

'宣告
Property ListView As Boolean
bool ListView { get; set; }
property bool ListView {
    bool get ();
    void set (bool value);
}
abstract ListView : bool with get, set
function get ListView () : boolean 
function set ListView (value : boolean)

屬性值

類型:Boolean
如果 [工具箱] 索引標籤是以 [清單] 檢視顯示,則為 true,否則為 false。

備註

ToolBox 中,ListView 可以個別套用各個索引標籤。 也就是說,當一個索引標籤以 [清單] 檢視,其他的則以 [圖示] 檢視。

[清單] 檢視與 [圖示] 檢視和 Windows 檔案總管中的類似。 在 [清單] 檢視,[工具箱] 的內容會以文字說明逐一列出,並在左邊附有一個圖示。 在 [圖示] 檢視,每一個項目只以一個圖示代表。 您可以將滑鼠箭頭停在圖示上方,以取得圖示的工具提示描述。

範例

Sub ListViewExample()
    ' This toggles the view of the Toolbox.
    ' 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

    ' Add a new Text item to the first tab in the Toolbox.
    MsgBox("Turning Toolbox to List view...")
    tbxTabs.Item(1).ListView = False
    MsgBox("Turning Toolbox to Icon view...")
    tbxTabs.Item(1).ListView = True
End Sub

.NET Framework 安全性

請參閱

參考

ToolBoxTab 介面

EnvDTE 命名空間