Control.ControlCollection.IndexOf(Control) 方法

定义

检索控件集合中指定控件的索引。

public:
 int IndexOf(System::Windows::Forms::Control ^ control);
public int IndexOf (System.Windows.Forms.Control control);
public int IndexOf (System.Windows.Forms.Control? control);
member this.IndexOf : System.Windows.Forms.Control -> int
Public Function IndexOf (control As Control) As Integer

参数

control
Control

要在集合中查找的 Control

返回

Int32

一个从零开始的索引值,它表示 Control 中的指定 Control.ControlCollection 的位置。

注解

如果在集合中找不到控件,则 IndexOf 方法返回值为 -1。

适用于