ToolBar.ToolBarButtonCollection.RemoveAt 方法
从工具栏按钮集合中移除给定按钮。
**命名空间:**System.Windows.Forms
**程序集:**System.Windows.Forms(在 system.windows.forms.dll 中)
语法
声明
Public Sub RemoveAt ( _
index As Integer _
)
用法
Dim instance As ToolBarButtonCollection
Dim index As Integer
instance.RemoveAt(index)
public void RemoveAt (
int index
)
public:
virtual void RemoveAt (
int index
) sealed
public final void RemoveAt (
int index
)
public final function RemoveAt (
index : int
)
参数
- index
集合中 ToolBarButton 的索引位置。
异常
异常类型 | 条件 |
---|---|
index 值小于零或大于集合中按钮的数目。 |
备注
Remove 方法移除 ToolBar.ToolBarButtonCollection 中指定位置的 ToolBarButton。如果要从集合中移除所有 ToolBarButton 控件,请使用 Clear 方法。
示例
下面的代码示例将移除 ToolBar 上的最后一个 ToolBarButton。要移除的工具栏按钮的索引值被设置为等于 Count 属性减 1,因为 ToolBarButton 集合是一个从零开始的索引。
Public Sub RemoveMyButton()
Dim btns As Integer
btns = toolBar1.Buttons.Count
' Remove the last toolbar button.
toolBar1.Buttons.RemoveAt(btns - 1)
End Sub
public void RemoveMyButton()
{
int btns;
btns = toolBar1.Buttons.Count;
// Remove the last toolbar button.
toolBar1.Buttons.RemoveAt(btns - 1);
}
public:
void RemoveMyButton()
{
int btns;
btns = toolBar1->Buttons->Count;
// Remove the last toolbar button.
toolBar1->Buttons->RemoveAt( btns - 1 );
}
平台
Windows 98、Windows 2000 SP4、Windows CE、Windows Millennium Edition、Windows Mobile for Pocket PC、Windows Server 2003、Windows XP Media Center Edition、Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition
.NET Framework 并不是对每个平台的所有版本都提供支持。有关受支持版本的列表,请参见系统要求。
版本信息
.NET Framework
受以下版本支持:2.0、1.1、1.0
.NET Compact Framework
受以下版本支持:2.0、1.0
请参见
参考
ToolBar.ToolBarButtonCollection 类
ToolBar.ToolBarButtonCollection 成员
System.Windows.Forms 命名空间
Clear
ToolBarButton
Add