⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 frmreaderinfoview.designer.cs

📁 数据库课程设计
💻 CS
字号:
namespace UI
{
    partial class frmReaderInfoView
    {
        /// <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 Windows 窗体设计器生成的代码

        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmReaderInfoView));
            this.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.txtReaderName = new System.Windows.Forms.TextBox();
            this.label3 = new System.Windows.Forms.Label();
            this.txtReaderID = new System.Windows.Forms.TextBox();
            this.GridViewReaderInfo = new System.Windows.Forms.DataGridView();
            this.btuOK = new System.Windows.Forms.Button();
            this.btuEsc = new System.Windows.Forms.Button();
            ((System.ComponentModel.ISupportInitialize)(this.GridViewReaderInfo)).BeginInit();
            this.SuspendLayout();
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(80, 63);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(0, 12);
            this.label1.TabIndex = 0;
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(36, 29);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(59, 12);
            this.label2.TabIndex = 1;
            this.label2.Text = "读者姓名:";
            // 
            // txtReaderName
            // 
            this.txtReaderName.Location = new System.Drawing.Point(93, 25);
            this.txtReaderName.Name = "txtReaderName";
            this.txtReaderName.Size = new System.Drawing.Size(126, 21);
            this.txtReaderName.TabIndex = 2;
            this.txtReaderName.TextChanged += new System.EventHandler(this.txtReaderName_TextChanged);
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(254, 30);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(59, 12);
            this.label3.TabIndex = 3;
            this.label3.Text = "会员卡号:";
            // 
            // txtReaderID
            // 
            this.txtReaderID.Location = new System.Drawing.Point(311, 25);
            this.txtReaderID.Name = "txtReaderID";
            this.txtReaderID.Size = new System.Drawing.Size(126, 21);
            this.txtReaderID.TabIndex = 4;
            this.txtReaderID.TextChanged += new System.EventHandler(this.txtReaderID_TextChanged);
            // 
            // GridViewReaderInfo
            // 
            this.GridViewReaderInfo.BackgroundColor = System.Drawing.Color.White;
            this.GridViewReaderInfo.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.GridViewReaderInfo.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.SunkenVertical;
            this.GridViewReaderInfo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.GridViewReaderInfo.Location = new System.Drawing.Point(-2, 63);
            this.GridViewReaderInfo.Name = "GridViewReaderInfo";
            this.GridViewReaderInfo.RowTemplate.Height = 23;
            this.GridViewReaderInfo.Size = new System.Drawing.Size(667, 333);
            this.GridViewReaderInfo.TabIndex = 5;
            this.GridViewReaderInfo.CellContentDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.GridViewReaderInfo_CellContentDoubleClick);
            this.GridViewReaderInfo.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.GridViewReaderInfo_CellContentClick);
            // 
            // btuOK
            // 
            this.btuOK.Location = new System.Drawing.Point(461, 17);
            this.btuOK.Name = "btuOK";
            this.btuOK.Size = new System.Drawing.Size(89, 36);
            this.btuOK.TabIndex = 6;
            this.btuOK.Text = "选择";
            this.btuOK.UseVisualStyleBackColor = true;
            this.btuOK.Click += new System.EventHandler(this.btuOK_Click);
            // 
            // btuEsc
            // 
            this.btuEsc.Location = new System.Drawing.Point(564, 16);
            this.btuEsc.Name = "btuEsc";
            this.btuEsc.Size = new System.Drawing.Size(89, 36);
            this.btuEsc.TabIndex = 7;
            this.btuEsc.Text = "取消";
            this.btuEsc.UseVisualStyleBackColor = true;
            this.btuEsc.Click += new System.EventHandler(this.button2_Click);
            // 
            // frmReaderInfoView
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(665, 396);
            this.Controls.Add(this.btuEsc);
            this.Controls.Add(this.btuOK);
            this.Controls.Add(this.GridViewReaderInfo);
            this.Controls.Add(this.txtReaderID);
            this.Controls.Add(this.label3);
            this.Controls.Add(this.txtReaderName);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.label1);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MinimizeBox = false;
            this.Name = "frmReaderInfoView";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "读者列表选择";
            this.Load += new System.EventHandler(this.frmReaderInfo_Load);
            ((System.ComponentModel.ISupportInitialize)(this.GridViewReaderInfo)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.TextBox txtReaderName;
        private System.Windows.Forms.Label label3;
        private System.Windows.Forms.TextBox txtReaderID;
        private System.Windows.Forms.DataGridView GridViewReaderInfo;
        private System.Windows.Forms.Button btuOK;
        private System.Windows.Forms.Button btuEsc;
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -