Control.ControlCollection.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)
参数
实现
示例
如果集合的计数大于零,下面的代码示例将删除派生类Panel的 中的第一ControlControl.ControlCollection个 。 该示例要求你已在 上创建了一个 PanelButton、 和至少一个Form其他控件。 其他控件将添加到 控件,Panel并将Panel控件添加到 。Form 单击按钮时,面板中包含的第一个控件将从 Control.ControlCollection中删除。
// Remove the first control in the collection.
private:
void removeAtButton_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
if ( panel1->Controls->Count > 0 )
{
panel1->Controls->RemoveAt( 0 );
}
}
// Remove the first control in the collection.
private void removeAtButton_Click(object sender, System.EventArgs e)
{
if (panel1.Controls.Count > 0)
{
panel1.Controls.RemoveAt(0);
}
}
' Remove the first control in the collection.
Private Sub RemoveAtButton_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles RemoveAtButton.Click
If (Panel1.Controls.Count > 0) Then
Panel1.Controls.RemoveAt(0)
End If
End Sub
注解
Control从控件集合中删除 时,所有后续控件都将在集合中向上移动一个位置。
还可以使用 Remove 或 Clear 方法删除Control之前添加的 。
若要向集合添加新 Control 对象,请使用 Add 或 AddRange 方法。