FormCollection.Item[] 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
提供对集合中的 Form 对象的访问。
重载
Item[Int32] |
按照数字索引获取或设置集合中的元素。 |
Item[String] |
根据关联的 Form 对象的名称获取或设置集合中的元素。 |
Item[Int32]
按照数字索引获取或设置集合中的元素。
public:
virtual property System::Windows::Forms::Form ^ default[int] { System::Windows::Forms::Form ^ get(int index); };
public virtual System.Windows.Forms.Form this[int index] { get; }
public virtual System.Windows.Forms.Form? this[int index] { get; }
member this.Item(int) : System.Windows.Forms.Form
Default Public Overridable ReadOnly Property Item(index As Integer) As Form
参数
属性值
指定索引处的窗体。
适用于
Item[String]
根据关联的 Form 对象的名称获取或设置集合中的元素。
public:
virtual property System::Windows::Forms::Form ^ default[System::String ^] { System::Windows::Forms::Form ^ get(System::String ^ name); };
public virtual System.Windows.Forms.Form this[string name] { get; }
public virtual System.Windows.Forms.Form? this[string? name] { get; }
member this.Item(string) : System.Windows.Forms.Form
Default Public Overridable ReadOnly Property Item(name As String) As Form
参数
属性值
具有指定名称的窗体。