PagerEx.cs 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Drawing;
  5. using System.Data;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace LYFZ.ComponentLibrary
  10. {
  11. public partial class PagerEx : UserControl
  12. {
  13. public delegate void RefreshPage();
  14. private RefreshPage _refresh;
  15. /// <summary>
  16. /// 页显示数
  17. /// </summary>
  18. private int _PageSize;
  19. /// <summary>
  20. /// 页总数
  21. /// </summary>
  22. private int _PageCount = 0;
  23. /// <summary>
  24. /// 页码
  25. /// </summary>
  26. private int _PageIndex = 1;
  27. /// <summary>
  28. /// 数据条数
  29. /// </summary>
  30. private int _Count = 0;
  31. /// <summary>
  32. /// 跳转页码
  33. /// </summary>
  34. private int _GoIndex = 0;
  35. public void isEnable()
  36. {
  37. try
  38. {
  39. if (_PageIndex == 1)
  40. {
  41. this.lbtnfrist.Enabled = false;
  42. this.lbtnUP.Enabled = false;
  43. }
  44. else
  45. {
  46. this.lbtnUP.Enabled = true;
  47. this.lbtnfrist.Enabled = true;
  48. }
  49. if (this._PageIndex == this._PageCount)
  50. {
  51. this.lbtnDown.Enabled = false;
  52. this.lbtnlast.Enabled = false;
  53. }
  54. else
  55. {
  56. this.lbtnDown.Enabled = true;
  57. this.lbtnlast.Enabled = true;
  58. }
  59. if (this._Count == 0)
  60. {
  61. this.lbtnDown.Enabled = false;
  62. this.lbtnlast.Enabled = false;
  63. this.lbtnfrist.Enabled = false;
  64. this.lbtnUP.Enabled = false;
  65. this.lbtnGO.Enabled = false;
  66. }
  67. }
  68. catch (Exception)
  69. {
  70. }
  71. }
  72. /// <summary>
  73. /// 获取或设置页显示数量
  74. /// </summary>
  75. public int PageSize
  76. {
  77. get { return _PageSize; }
  78. set { _PageSize = value; }
  79. }
  80. /// <summary>
  81. /// 获取或设置页数量
  82. /// </summary>
  83. public int PageCount
  84. {
  85. get { return _PageCount; }
  86. set
  87. {
  88. _PageCount = value;
  89. labpcount.Text = _PageCount.ToString();
  90. if (this._PageCount >1)
  91. {
  92. this.lbtnDown.Enabled = true;
  93. this.lbtnlast.Enabled = true;
  94. this.lbtnfrist.Enabled = true;
  95. this.lbtnUP.Enabled = true;
  96. this.lbtnGO.Enabled = true;
  97. }
  98. if (this._PageCount < Convert.ToInt32(labindex.Text))
  99. {
  100. labindex.Text = "1";
  101. }
  102. }
  103. }
  104. /// <summary>
  105. /// 获取或设置页码
  106. /// </summary>
  107. public int PageIndex
  108. {
  109. get { return Convert.ToInt32(labindex.Text); }
  110. set { _PageIndex = value; }
  111. }
  112. /// <summary>
  113. /// 获取或设置数据总数量
  114. /// </summary>
  115. public int Count
  116. {
  117. get
  118. {
  119. return _Count;
  120. }
  121. set
  122. {
  123. _Count = value;
  124. lblCount.Text = Count.ToString();
  125. if (this.Count == 0)
  126. {
  127. labindex.Text = "1";
  128. this.lbtnDown.Enabled = false;
  129. this.lbtnlast.Enabled = false;
  130. this.lbtnfrist.Enabled = false;
  131. this.lbtnUP.Enabled = false;
  132. this.lbtnGO.Enabled = false;
  133. return;
  134. }
  135. }
  136. }
  137. /// <summary>
  138. /// 获取或设置跳转页面
  139. /// </summary>
  140. public int GoIndex
  141. {
  142. get { return _GoIndex; }
  143. set { _GoIndex = value; }
  144. }
  145. /// <summary>
  146. /// 刷新数据
  147. /// </summary>
  148. public RefreshPage RefreshData
  149. {
  150. set
  151. {
  152. _refresh = value;
  153. }
  154. }
  155. /// <summary>
  156. /// 构造函数
  157. /// </summary>
  158. public PagerEx()
  159. {
  160. InitializeComponent();
  161. }
  162. #region 按钮事件
  163. private void lbtnfrist_Click(object sender, EventArgs e)
  164. {
  165. //首页
  166. _PageIndex = 1;
  167. labindex.Text = _PageIndex.ToString();
  168. lblCount.Text = Count.ToString();
  169. _refresh();
  170. isEnable();
  171. tbxGo.Text = "";
  172. }
  173. private void lbtnUP_Click(object sender, EventArgs e)
  174. {
  175. //上一页
  176. int tmp = Convert.ToInt32(labindex.Text);
  177. tmp = tmp - 1;
  178. if (tmp <= 0)
  179. {
  180. tmp = 1;
  181. }
  182. _PageIndex = tmp;
  183. lblCount.Text = Count.ToString();
  184. labindex.Text = _PageIndex.ToString();
  185. _refresh();
  186. isEnable();
  187. tbxGo.Text = "";
  188. }
  189. private void lbtnDown_Click(object sender, EventArgs e)
  190. {
  191. //下一页
  192. int tmp = Convert.ToInt32(labpcount.Text);
  193. int tmp2 = Convert.ToInt32(labindex.Text);
  194. tmp2 = tmp2 + 1;
  195. if (tmp2 > tmp)
  196. {
  197. _PageIndex = tmp;
  198. labindex.Text = tmp.ToString();
  199. }
  200. else
  201. {
  202. _PageIndex = tmp2;
  203. labindex.Text = tmp2.ToString();
  204. }
  205. if (this._PageCount == 0)
  206. {
  207. labindex.Text = "1";
  208. this.lbtnDown.Enabled = false;
  209. this.lbtnlast.Enabled = false;
  210. this.lbtnfrist.Enabled = false;
  211. this.lbtnUP.Enabled = false;
  212. this.lbtnGO.Enabled = false;
  213. return;
  214. }
  215. lblCount.Text = Count.ToString();
  216. _refresh();
  217. isEnable();
  218. tbxGo.Text = "";
  219. }
  220. private void lbtnlast_Click(object sender, EventArgs e)
  221. {
  222. //最后页
  223. _PageIndex = Convert.ToInt32(labpcount.Text);
  224. labindex.Text = labpcount.Text;
  225. if (this._PageCount == 0)
  226. {
  227. labindex.Text = "1";
  228. this.lbtnDown.Enabled = false;
  229. this.lbtnlast.Enabled = false;
  230. this.lbtnfrist.Enabled = false;
  231. this.lbtnUP.Enabled = false;
  232. this.lbtnGO.Enabled = false;
  233. return;
  234. }
  235. lblCount.Text = Count.ToString();
  236. _refresh();
  237. isEnable();
  238. tbxGo.Text = "";
  239. }
  240. private void lbtnGO_Click(object sender, EventArgs e)
  241. {
  242. //跳转
  243. int tmp = 0;
  244. try
  245. {
  246. tmp = Convert.ToInt32(tbxGo.Text);
  247. }
  248. catch
  249. {
  250. tmp = 1;
  251. tbxGo.Text = "1";
  252. }
  253. if (tmp <= 0)
  254. {
  255. tmp = 1;
  256. }
  257. int tmp2 = Convert.ToInt32(labpcount.Text);
  258. if (tmp > tmp2)
  259. {
  260. _PageIndex = tmp2;
  261. }
  262. else
  263. {
  264. _PageIndex = tmp;
  265. }
  266. if (this._PageCount == 0)
  267. {
  268. labindex.Text = "1";
  269. tbxGo.Text = "";
  270. this.lbtnDown.Enabled = false;
  271. this.lbtnlast.Enabled = false;
  272. this.lbtnfrist.Enabled = false;
  273. this.lbtnUP.Enabled = false;
  274. this.lbtnGO.Enabled = false;
  275. return;
  276. }
  277. lblCount.Text = Count.ToString();
  278. labindex.Text = _PageIndex.ToString();
  279. tbxGo.Text = _PageIndex.ToString();
  280. _refresh();
  281. isEnable();
  282. }
  283. #endregion
  284. }
  285. }