DataGrid控件的分页
自动分页: dg1.AllowPaging = True; 自定义分页:dg1.AllowPaging = dg1.AllowCustomPaging = True; 1.自动分页 1)设置DataGrid控件的AllowPaging属性为True。 可以直接在属性面板中设置,也可以在DataGrid控件的属性生成器中设置 2)为DataGrid控件编写PageIndexChanged事件处理方法,代码如下: --------------------------------------------------------------------------- DataGrid1.CurrentPageIndex = e.NewPageIndex; //更改显示页索引后,要重新绑定DataGrid控件 datagridBind(); //这是一个用于绑定页面上DataGrid控件的方法 --------------------------------------------------------------------------- 2.对自动分页的分析 首先,设置DataGrid控件dg1的AllowPaging属性为True 其次,设置dg1的PageSize属性(即单页上显示的项数) 三,为dg1的DataSource属性指定数据源(实现IEnumerable