CompositeControl.Controls 属性

定义

获取表示 ControlCollection 中的子控件的 CompositeControl 对象。

public:
 virtual property System::Web::UI::ControlCollection ^ Controls { System::Web::UI::ControlCollection ^ get(); };
public override System.Web.UI.ControlCollection Controls { get; }
member this.Controls : System.Web.UI.ControlCollection
Public Overrides ReadOnly Property Controls As ControlCollection

属性值

ControlCollection

ControlCollection 用于表示 CompositeControl 中的子控件。

注解

Controls属性重写基实现,以确保在返回对象之前已经创建了所有子控件 ControlCollection

Controls属性允许你以编程方式访问的 ControlCollection CompositeControl 。 你可以将控件添加到集合中或从集合中移除控件,然后循环访问集合中的控件。

适用于

另请参阅