ControlBindingsCollection.RemoveAt(Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
删除指定索引处的 Binding。
public:
void RemoveAt(int index);
public void RemoveAt (int index);
override this.RemoveAt : int -> unit
Public Sub RemoveAt (index As Integer)
参数
- index
- Int32
要移除的项的从零开始的索引。
例外
index
值小于 0 或大于集合中的绑定数。
示例
下面的代码示例使用 Count 属性来确定索引是否在集合的范围内。 如果是,则删除第三 Binding 个。
private:
void RemoveThirdBinding()
{
if ( textBox1->DataBindings->Count < 3 )
{
return;
}
textBox1->DataBindings->RemoveAt( 2 );
}
private void RemoveThirdBinding()
{
if(textBox1.DataBindings.Count < 3) return;
textBox1.DataBindings.RemoveAt(2);
}
Private Sub RemoveThirdBinding()
If textBox1.DataBindings.Count < 3 Then
Return
End If
textBox1.DataBindings.RemoveAt(2)
End Sub
注解
CollectionChanged如果删除成功,则会发生 该事件。