lu
2024-11-25 085fef1f2662c238d56ee0dbaae1e4c777c171e2
DevApp/Gs.DevApp/UserControl/UcPageBar.cs
@@ -1,4 +1,5 @@
using System;
using 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; //定义事件
@@ -23,7 +25,8 @@
            RowsCount = Convert.ToInt32(cbxRowCount.Text);
            CurrentPage = 1;
            if (PagerEvent != null)
                BtnEvents(sender, e);
                if (RecordCount > 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
@@ -131,10 +134,20 @@
        /// </summary>
        public int RowsCount { get; set; }
        int _RecordCount;
        /// <summary>
        ///     总记录数
        /// </summary>
        public int RecordCount { get; set; }
        public int RecordCount
        {
            get { return _RecordCount; }
            set
            {
                _RecordCount = value;
                setTxt();
            }
        }
        #endregion
    }