说明: 1)具体调用请关注 看DevExpress 用户控件 分页(下) datanavi_ButtonClick 是DataNavigator的ButtonClikc事件 视图设计器: 分页用户控件后台代码如下: using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Data; using System.Linq; using…
分页控件调用 (1)初始化时: this.pageCtrl1.pageSize = 4; (2)数据绑定时: 从数据库中获取实时的 Public void LoadData(){ //这是只写有关分页的部分 DSMain为执行存储过程活动的Dataset int aa = int.Parse(DSMain.Tables[1].Rows[0]["PageIndex"].ToString()); int bb = int.Parse(DSMain.Tables…
using System; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.Design; using System.Windows.Forms; namespace Samples { public partial class Controller : Component { public Controller() { InitializeComponent()…