using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Text;
using System.Windows.Forms;
namespace WinFormPage
{
/// <summary>
/// 更新网站:http://www.sufeinet.com/thread-1788-1-1.html
/// </summary>
public partial class WinFormPage : UserControl
{
public delegate void RefreshPage();
private RefreshPage _refresh;
/// <summary>
/// 页显示数
/// </summary>
private int _PageSize = 20;
/// <summary>
/// 页总数
/// </summary>
private int _PageCount = 0;
/// <summary>
/// 页码
/// </summary>
private int _PageIndex = 1;
/// <summary>
/// 数据条数
/// </summary>
private int _Count = 0;
/// <summary>
/// 跳转页码
/// </summary>
private int _GoIndex = 0;
public void isEnable()
{
try
{
if (_PageIndex == 1)
{
this.lbtnfrist.Enabled = false;
this.lbtnUP.Enabled = false;
}
else
{
this.lbtnUP.Enabled = true;
this.lbtnfrist.Enabled = true;
}
if (this._PageIndex == this._PageCount)
{
this.lbtnDown.Enabled = false;
this.lbtnlast.Enabled = false;
}
else
{
this.lbtnDown.Enabled = true;
this.lbtnlast.Enabled = true;
}
if (this._Count == 0)
{
this.lbtnDown.Enabled = false;
this.lbtnlast.Enabled = false;
this.lbtnfrist.Enabled = false;
this.lbtnUP.Enabled = false;
}
}
catch (Exception)
{
}
}
/// <summary>
/// 获取或设置页显示数量
/// </summary>
public int PageSize
{
get { return _PageSize; }
set { _PageSize = value; }
}
/// <summary>
/// 获取或设置页数量
/// </summary>
public int PageCount
{
get { return _PageCount; }
set
{
_PageCount = value;
labpcount.Text = _PageCount.ToString();
}
}
/// <summary>
/// 获取或设置页码
/// </summary>
public int PageIndex
{
get { return Convert.ToInt32(labindex.Text); }
set { _PageIndex = value; }
}
/// <summary>
/// 获取或设置数据总数量
/// </summary>
public int Count
{
get
{
return _Count;
}
set
{
_Count = value;
}
}
/// <summary>
/// 获取或设置跳转页面
/// </summary>
public int GoIndex
{
get { return _GoIndex; }
set { _GoIndex = value; }
}
/// <summary>
/// 刷新数据
/// </summary>
public RefreshPage RefreshData
{
set
{
_refresh = value;
}
}
/// <summary>
/// 构造函数
/// </summary>
public WinFormPage()
{
InitializeComponent();
}
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
//第一页
_PageIndex = 1;
labindex.Text = _PageIndex.ToString();
_refresh();
isEnable();
}
private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
//上一页
int tmp = Convert.ToInt32(labindex.Text);
tmp = tmp - 1;
if (tmp <= 0)
{
tmp = 1;
}
_PageIndex = tmp;
labindex.Text = _PageIndex.ToString();
_refresh();
isEnable();
}
private void linkLabel3_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
//下一页
int tmp = Convert.ToInt32(labpcount.Text);
int tmp2 = Convert.ToInt32(labindex.Text);
tmp2 = tmp2 + 1;
if (tmp2 > tmp)
{
_PageIndex = tmp;
labindex.Text = tmp.ToString();
}
else
{
_PageIndex = tmp2;
labindex.Text = tmp2.ToString();
}
_refresh();
isEnable();
}
private void linkLabel4_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
//最后页
_PageIndex = Convert.ToInt32(labpcount.Text);
labindex.Text = labpcount.Text;
_refresh();
isEnable();
}
private void linkLabel5_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
//跳转
int tmp = 0;
try
{
tmp = Convert.ToInt32(tbxGo.Text);
}
catch
{
tmp = 1;
tbxGo.Text = "1";
}
if (tmp <= 0)
{
tmp = 1;
}
int tmp2 = Convert.ToInt32(labpcount.Text);
if (tmp > tmp2)
{
_PageIndex = tmp2;
}
else
{
_PageIndex = tmp;
}
labindex.Text = _PageIndex.ToString();
tbxGo.Text = _PageIndex.ToString();
_refresh();
isEnable();
}
}
}
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication2
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
//分页方法
private void bind()
{
//取总行数
winFormPage1.Count = 1000;
//总页数
winFormPage1.PageCount = winFormPage1.Count / winFormPage1.PageSize;
if (winFormPage1.Count % winFormPage1.PageSize != 0)
winFormPage1.PageCount = winFormPage1.PageCount + 1;
//绑定数
dataGridView1.DataSource = "数据源";
}
private void Form1_Load(object sender, EventArgs e)
{
//刷新分页方法
winFormPage1.RefreshData = bind;
bind();
}
}
}
net_love 发表于 2012-12-21 11:53
//总页数
winFormPage1.PageCount = winFormPage1.Count / winFormPage1.PageSize;
rocciares 发表于 2014-7-15 17:11
如果能有个实例就更好了
mingjie_520 发表于 2014-7-16 09:52
不能弄个设置每页显示条数的吗?
chuju998 发表于 2014-8-19 09:04
站长你好 , 例子中的
//绑定数
dataGridView1.DataSource = "数据源";
chuju998 发表于 2014-8-19 09:20
那不用 根据 当前页码 过滤一下数据源吗??
比如取出总共的数据是一百条 , 现在是第一页 ,每页10条 ...
chuju998 发表于 2014-8-19 09:34
原来如此 , 分页控件 和 分页功能 没有绑在一起 ,
说的有道理 , 不同逻辑有不同分页功能 ,
...
cytoverri 发表于 2014-8-19 11:25
这是 一次性查询出的数据进行分页 是不是得优化下 写成数据库分页的
站长苏飞 发表于 2014-7-15 17:12
你没有下载吧,源码里有例子
欢迎光临 苏飞论坛 (http://www.sufeinet.com/) | Powered by Discuz! X3.4 |