| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 | namespace WCS_Client.UC{    partial class PagerControl    {        /// <summary>         /// 必需的设计器变量。        /// </summary>        private System.ComponentModel.IContainer components = null;        /// <summary>         /// 清理所有正在使用的资源。        /// </summary>        /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>        protected override void Dispose(bool disposing)        {            if (disposing && (components != null))            {                components.Dispose();            }            base.Dispose(disposing);        }        #region 组件设计器生成的代码        /// <summary>         /// 设计器支持所需的方法 - 不要修改        /// 使用代码编辑器修改此方法的内容。        /// </summary>        private void InitializeComponent()        {            this.lblInfo = new System.Windows.Forms.Label();            this.btnFirst = new System.Windows.Forms.Button();            this.btnPre = new System.Windows.Forms.Button();            this.btnNext = new System.Windows.Forms.Button();            this.btnLast = new System.Windows.Forms.Button();            this.btnGo = new System.Windows.Forms.Button();            this.txtPage = new System.Windows.Forms.TextBox();            this.SuspendLayout();            //             // lblInfo            //             this.lblInfo.AutoSize = true;            this.lblInfo.Location = new System.Drawing.Point(14, 10);            this.lblInfo.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);            this.lblInfo.Name = "lblInfo";            this.lblInfo.Size = new System.Drawing.Size(61, 13);            this.lblInfo.TabIndex = 0;            this.lblInfo.Text = "共0条记录";            //             // btnFirst            //             this.btnFirst.FlatStyle = System.Windows.Forms.FlatStyle.Popup;            this.btnFirst.Location = new System.Drawing.Point(298, 5);            this.btnFirst.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);            this.btnFirst.Name = "btnFirst";            this.btnFirst.Size = new System.Drawing.Size(43, 23);            this.btnFirst.TabIndex = 3;            this.btnFirst.Text = "首页";            this.btnFirst.UseVisualStyleBackColor = true;            this.btnFirst.Click += new System.EventHandler(this.btnFirst_Click);            //             // btnPre            //             this.btnPre.FlatStyle = System.Windows.Forms.FlatStyle.Popup;            this.btnPre.Location = new System.Drawing.Point(353, 5);            this.btnPre.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);            this.btnPre.Name = "btnPre";            this.btnPre.Size = new System.Drawing.Size(64, 23);            this.btnPre.TabIndex = 4;            this.btnPre.Text = "上一页";            this.btnPre.UseVisualStyleBackColor = true;            this.btnPre.Click += new System.EventHandler(this.btnPre_Click);            //             // btnNext            //             this.btnNext.FlatStyle = System.Windows.Forms.FlatStyle.Popup;            this.btnNext.Location = new System.Drawing.Point(421, 5);            this.btnNext.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);            this.btnNext.Name = "btnNext";            this.btnNext.Size = new System.Drawing.Size(63, 23);            this.btnNext.TabIndex = 5;            this.btnNext.Text = "下一页";            this.btnNext.UseVisualStyleBackColor = true;            this.btnNext.Click += new System.EventHandler(this.btnNext_Click);            //             // btnLast            //             this.btnLast.FlatStyle = System.Windows.Forms.FlatStyle.Popup;            this.btnLast.Location = new System.Drawing.Point(488, 5);            this.btnLast.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);            this.btnLast.Name = "btnLast";            this.btnLast.Size = new System.Drawing.Size(43, 23);            this.btnLast.TabIndex = 6;            this.btnLast.Text = "末页";            this.btnLast.UseVisualStyleBackColor = true;            this.btnLast.Click += new System.EventHandler(this.btnLast_Click);            //             // btnGo            //             this.btnGo.FlatStyle = System.Windows.Forms.FlatStyle.Popup;            this.btnGo.Location = new System.Drawing.Point(578, 5);            this.btnGo.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);            this.btnGo.Name = "btnGo";            this.btnGo.Size = new System.Drawing.Size(34, 23);            this.btnGo.TabIndex = 7;            this.btnGo.Text = "GO";            this.btnGo.UseVisualStyleBackColor = true;            this.btnGo.Click += new System.EventHandler(this.btnGo_Click);            //             // txtPage            //             this.txtPage.Location = new System.Drawing.Point(541, 6);            this.txtPage.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);            this.txtPage.Name = "txtPage";            this.txtPage.Size = new System.Drawing.Size(30, 20);            this.txtPage.TabIndex = 8;            //             // PagerControl            //             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;            this.Controls.Add(this.txtPage);            this.Controls.Add(this.btnGo);            this.Controls.Add(this.btnLast);            this.Controls.Add(this.btnNext);            this.Controls.Add(this.btnPre);            this.Controls.Add(this.btnFirst);            this.Controls.Add(this.lblInfo);            this.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);            this.Name = "PagerControl";            this.Size = new System.Drawing.Size(738, 33);            this.Load += new System.EventHandler(this.PagerControl_Load);            this.ResumeLayout(false);            this.PerformLayout();        }        #endregion        private System.Windows.Forms.Label lblInfo;        private System.Windows.Forms.Button btnFirst;        private System.Windows.Forms.Button btnPre;        private System.Windows.Forms.Button btnNext;        private System.Windows.Forms.Button btnLast;        private System.Windows.Forms.Button btnGo;        private System.Windows.Forms.TextBox txtPage;    }}
 |