GridView.CreateChildControls(IEnumerable, Boolean) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
使用指定数据源创建用于呈现 GridView 控件的控件层次结构。
protected:
override int CreateChildControls(System::Collections::IEnumerable ^ dataSource, bool dataBinding);
protected override int CreateChildControls (System.Collections.IEnumerable dataSource, bool dataBinding);
override this.CreateChildControls : System.Collections.IEnumerable * bool -> int
Protected Overrides Function CreateChildControls (dataSource As IEnumerable, dataBinding As Boolean) As Integer
参数
- dataSource
- IEnumerable
一个 IEnumerable,包含 GridView 控件的数据源。
- dataBinding
- Boolean
true
指示子控件绑定到数据;否则为 false
。
返回
创建的行数。
例外
dataSource
返回空的 DataSourceView。
或 -
dataSource
未实现 ICollection 接口,无法返回 TotalRowCount。或 - AllowPaging 为
true
,dataSource
没有实现 ICollection 接口,无法执行数据源分页。或 -
dataSource
未实现 ICollection 接口,dataBinding
被设置为false
。
注解
该方法 CreateChildControls 用于创建控件的 GridView 控件层次结构。
备注
此方法主要由控件开发人员用来扩展 GridView 控件。