ToolBar.ToolBarButtonCollection.RemoveAt(Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从工具栏按钮集合中移除给定按钮。
public:
virtual void RemoveAt(int index);
public void RemoveAt (int index);
abstract member RemoveAt : int -> unit
override this.RemoveAt : int -> unit
Public Sub RemoveAt (index As Integer)
参数
- index
- Int32
集合中 ToolBarButton 的索引位置。
实现
例外
index
值小于零或大于集合中按钮的数目。
示例
下面的代码示例删除 上的最后 ToolBarButton 一个 ToolBar。 要删除的工具栏按钮的索引值设置为等于 Count 属性减 1,因为 ToolBarButton 集合是从零开始的索引。
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);
}
Public Sub RemoveMyButton()
Dim btns As Integer
btns = toolBar1.Buttons.Count
' Remove the last toolbar button.
toolBar1.Buttons.RemoveAt(btns - 1)
End Sub
注解
方法 Remove 删除 ToolBarButton 中指定位置的 ToolBar.ToolBarButtonCollection。 如果要从集合中删除所有 ToolBarButton 控件,请使用 Clear 方法。