ListView.AddControlToContainer(Control, Control, Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将指定控件添加到指定容器。
protected:
virtual void AddControlToContainer(System::Web::UI::Control ^ control, System::Web::UI::Control ^ container, int addLocation);
protected virtual void AddControlToContainer (System.Web.UI.Control control, System.Web.UI.Control container, int addLocation);
abstract member AddControlToContainer : System.Web.UI.Control * System.Web.UI.Control * int -> unit
override this.AddControlToContainer : System.Web.UI.Control * System.Web.UI.Control * int -> unit
Protected Overridable Sub AddControlToContainer (control As Control, container As Control, addLocation As Integer)
参数
- control
- Control
一个对象,包含要添加到容器的控件。
- container
- Control
用于存储子控件的容器。
- addLocation
- Int32
控件集合中要添加子控件的位置。
注解
方法是 AddControlToContainer 控件调用的帮助程序方法, ListView 用于将控件添加到指定的容器。
注意
控件开发人员主要使用此方法来扩展 ListView 控件。