Control.ControlCollection.Item[] 属性

定义

指示集合中的一个 Control

重载

Item[Int32]

指示位于集合中指定索引位置的 Control

Item[String]

指示集合中具有指定键的一个 Control

Item[Int32]

指示位于集合中指定索引位置的 Control

public:
 virtual property System::Windows::Forms::Control ^ default[int] { System::Windows::Forms::Control ^ get(int index); };
public virtual System.Windows.Forms.Control this[int index] { get; }
member this.Item(int) : System.Windows.Forms.Control
Default Public Overridable ReadOnly Property Item(index As Integer) As Control

参数

index
Int32

要从控件集合中检索的控件索引。

属性值

Control

位于控件集合内指定索引位置的 Control

例外

index 值小于零或者大于等于集合中控件的数量。

注解

若要从中Control.ControlCollection检索值Control,请使用特定索引值引用集合对象。 索引值为 Control.ControlCollection 从零开始的索引。

另请参阅

适用于

Item[String]

指示集合中具有指定键的一个 Control

public:
 virtual property System::Windows::Forms::Control ^ default[System::String ^] { System::Windows::Forms::Control ^ get(System::String ^ key); };
public virtual System.Windows.Forms.Control this[string key] { get; }
public virtual System.Windows.Forms.Control? this[string? key] { get; }
member this.Item(string) : System.Windows.Forms.Control
Default Public Overridable ReadOnly Property Item(key As String) As Control

参数

key
String

要从控件集合中检索的控件的名称。

属性值

Control

Control 中具有指定键的 Control.ControlCollection

注解

a Name Control 属性对应于中某个 Control 项的 Control.ControlCollection键。

适用于