PageControl.Designer.cs 8.6 KB
namespace OnlineStore.AutoCountClient.useControl
{
    partial class PageControl
    {
        /// <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.linkFirst = new System.Windows.Forms.LinkLabel();
            this.linkPrev = new System.Windows.Forms.LinkLabel();
            this.linkNext = new System.Windows.Forms.LinkLabel();
            this.linkLast = new System.Windows.Forms.LinkLabel();
            this.linkGo = new System.Windows.Forms.LinkLabel();
            this.label1 = new System.Windows.Forms.Label();
            this.txtCurrentPage = new System.Windows.Forms.TextBox();
            this.label2 = new System.Windows.Forms.Label();
            this.lblTotalPage = new System.Windows.Forms.Label();
            this.lblPageSize = new System.Windows.Forms.Label();
            this.txtPageSize = new System.Windows.Forms.TextBox();
            this.label3 = new System.Windows.Forms.Label();
            this.SuspendLayout();
            // 
            // linkFirst
            // 
            this.linkFirst.AutoSize = true;
            this.linkFirst.Location = new System.Drawing.Point(22, 4);
            this.linkFirst.Name = "linkFirst";
            this.linkFirst.Size = new System.Drawing.Size(29, 12);
            this.linkFirst.TabIndex = 0;
            this.linkFirst.TabStop = true;
            this.linkFirst.Text = "首页";
            this.linkFirst.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkFirst_LinkClicked);
            // 
            // linkPrev
            // 
            this.linkPrev.AutoSize = true;
            this.linkPrev.Location = new System.Drawing.Point(68, 4);
            this.linkPrev.Name = "linkPrev";
            this.linkPrev.Size = new System.Drawing.Size(41, 12);
            this.linkPrev.TabIndex = 1;
            this.linkPrev.TabStop = true;
            this.linkPrev.Text = "上一页";
            this.linkPrev.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkPrve_LinkClicked);
            // 
            // linkNext
            // 
            this.linkNext.AutoSize = true;
            this.linkNext.Location = new System.Drawing.Point(126, 4);
            this.linkNext.Name = "linkNext";
            this.linkNext.Size = new System.Drawing.Size(41, 12);
            this.linkNext.TabIndex = 2;
            this.linkNext.TabStop = true;
            this.linkNext.Text = "下一页";
            this.linkNext.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkNext_LinkClicked);
            // 
            // linkLast
            // 
            this.linkLast.AutoSize = true;
            this.linkLast.Location = new System.Drawing.Point(184, 4);
            this.linkLast.Name = "linkLast";
            this.linkLast.Size = new System.Drawing.Size(29, 12);
            this.linkLast.TabIndex = 3;
            this.linkLast.TabStop = true;
            this.linkLast.Text = "末页";
            this.linkLast.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLast_LinkClicked);
            // 
            // linkGo
            // 
            this.linkGo.AutoSize = true;
            this.linkGo.Location = new System.Drawing.Point(498, 4);
            this.linkGo.Name = "linkGo";
            this.linkGo.Size = new System.Drawing.Size(29, 12);
            this.linkGo.TabIndex = 4;
            this.linkGo.TabStop = true;
            this.linkGo.Text = "转到";
            this.linkGo.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkGo_LinkClicked);
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(395, 4);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(17, 12);
            this.label1.TabIndex = 5;
            this.label1.Text = "第";
            // 
            // txtCurrentPage
            // 
            this.txtCurrentPage.Location = new System.Drawing.Point(415, 0);
            this.txtCurrentPage.MaxLength = 6;
            this.txtCurrentPage.Name = "txtCurrentPage";
            this.txtCurrentPage.Size = new System.Drawing.Size(54, 21);
            this.txtCurrentPage.TabIndex = 6;
            this.txtCurrentPage.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtCurrentPage_KeyPress);
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(472, 4);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(17, 12);
            this.label2.TabIndex = 7;
            this.label2.Text = "页";
            // 
            // lblTotalPage
            // 
            this.lblTotalPage.AutoSize = true;
            this.lblTotalPage.Location = new System.Drawing.Point(568, 4);
            this.lblTotalPage.Name = "lblTotalPage";
            this.lblTotalPage.Size = new System.Drawing.Size(35, 12);
            this.lblTotalPage.TabIndex = 8;
            this.lblTotalPage.Text = "共0页";
            // 
            // lblPageSize
            // 
            this.lblPageSize.AutoSize = true;
            this.lblPageSize.Location = new System.Drawing.Point(257, 4);
            this.lblPageSize.Name = "lblPageSize";
            this.lblPageSize.Size = new System.Drawing.Size(29, 12);
            this.lblPageSize.TabIndex = 9;
            this.lblPageSize.Text = "每页";
            // 
            // txtPageSize
            // 
            this.txtPageSize.Location = new System.Drawing.Point(289, 0);
            this.txtPageSize.MaxLength = 3;
            this.txtPageSize.Name = "txtPageSize";
            this.txtPageSize.Size = new System.Drawing.Size(39, 21);
            this.txtPageSize.TabIndex = 10;
            this.txtPageSize.Text = "50";
            this.txtPageSize.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtPageSize_KeyPress);
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(334, 4);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(17, 12);
            this.label3.TabIndex = 11;
            this.label3.Text = "条";
            // 
            // PageControl
            // 
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
            this.Controls.Add(this.label3);
            this.Controls.Add(this.txtPageSize);
            this.Controls.Add(this.lblPageSize);
            this.Controls.Add(this.lblTotalPage);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.txtCurrentPage);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.linkGo);
            this.Controls.Add(this.linkLast);
            this.Controls.Add(this.linkNext);
            this.Controls.Add(this.linkPrev);
            this.Controls.Add(this.linkFirst);
            this.Name = "PageControl";
            this.Size = new System.Drawing.Size(699, 21);
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.LinkLabel linkFirst;
        private System.Windows.Forms.LinkLabel linkPrev;
        private System.Windows.Forms.LinkLabel linkNext;
        private System.Windows.Forms.LinkLabel linkLast;
        private System.Windows.Forms.LinkLabel linkGo;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.TextBox txtCurrentPage;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.Label lblTotalPage;
        private System.Windows.Forms.Label lblPageSize;
        private System.Windows.Forms.TextBox txtPageSize;
        private System.Windows.Forms.Label label3;
    }
}