From 0895fb9962db16ca30e2913275396211d6094e13 Mon Sep 17 00:00:00 2001
From: lu <99954486@qq.com>
Date: 星期日, 08 十二月 2024 11:23:14 +0800
Subject: [PATCH] 细节
---
DevApp/Gs.DevApp/UserControl/UcPageBar.cs | 29 +++++++++++++++++++++--------
1 files changed, 21 insertions(+), 8 deletions(-)
diff --git a/DevApp/Gs.DevApp/UserControl/UcPageBar.cs b/DevApp/Gs.DevApp/UserControl/UcPageBar.cs
index bec80ee..27932ad 100644
--- a/DevApp/Gs.DevApp/UserControl/UcPageBar.cs
+++ b/DevApp/Gs.DevApp/UserControl/UcPageBar.cs
@@ -1,4 +1,5 @@
-锘縰sing System;
+锘縰sing Gs.DevApp.ToolBox;
+using System;
using System.Windows.Forms;
namespace UserControls.Data
@@ -11,7 +12,8 @@
public UcPageBar()
{
InitializeComponent();
- // UtilityHelper.SetFont(layoutControl1);
+ this.cbxRowCount.Text = "50";
+ this.cbxRowCount.SelectedIndexChanged += new System.EventHandler(this.cbxRowCount_SelectedIndexChanged);
}
public event GetPageDataEvents PagerEvent; //瀹氫箟浜嬩欢
@@ -20,10 +22,11 @@
private void cbxRowCount_SelectedIndexChanged(object sender,
EventArgs e)
{
- RowsCount = Convert.ToInt32(cbxRowCount.Text);
+ int _RowsCount = Convert.ToInt32(cbxRowCount.Text);
CurrentPage = 1;
if (PagerEvent != null)
- BtnEvents(sender, e);
+ if (_RowsCount > 0 && _RowsCount > 0)
+ BtnEvents(sender, e);
}
//鎵嬪姩杈撳叆鏄剧ず椤甸潰缂栧彿
@@ -86,7 +89,6 @@
private void BtnEvents(object sender, EventArgs e)
{
- //setTxt();
PagerEvent(CurrentPage, RowsCount);
}
@@ -95,7 +97,8 @@
tbxCurrentPage.Text = CurrentPage.ToString();
lbTotalPages.Text = "鍏� " + TotalPages + "椤�";
lbTotalRows.Text = "鍏� " + RecordCount + " 鏉¤褰�";
- cbxRowCount.Text = RowsCount.ToString();
+ if (RowsCount > 0)
+ cbxRowCount.Text = RowsCount.ToString();
if (CurrentPage == 1)
lbFirstPage.Enabled = false;
else
@@ -129,12 +132,22 @@
/// <summary>
/// 姣忛〉鏉℃暟
/// </summary>
- public int RowsCount { get; set; }
+ public int RowsCount { get { return int.Parse(this.cbxRowCount.Text); } }
+
+ int _RecordCount;
/// <summary>
/// 鎬昏褰曟暟
/// </summary>
- public int RecordCount { get; set; }
+ public int RecordCount
+ {
+ get { return _RecordCount; }
+ set
+ {
+ _RecordCount = value;
+ setTxt();
+ }
+ }
#endregion
}
--
Gitblit v1.9.3