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)
属性值
类型:System.Boolean
如果**“工具箱”**选项卡采用“列表”视图,则为 true;否则为 false。
备注
ListView 按选项卡应用于 ToolBox。也就是说,一个选项卡可以有“列表”视图,而另一个选项卡可以有“图标”视图。
“列表”视图和“图标”视图与 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 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。