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

📄 frmbookinfoview.designer.cs

📁 数据库课程设计
💻 CS
字号:
namespace UI
{
    partial class frmBookInfoView
    {
        /// <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(frmBookInfoView));
            this.label1 = new System.Windows.Forms.Label();
            this.txtBookName = new System.Windows.Forms.TextBox();
            this.label2 = new System.Windows.Forms.Label();
            this.txtBookIDorISBN = new System.Windows.Forms.TextBox();
            this.GridViewBookInfo = new System.Windows.Forms.DataGridView();
            this.butOK = new System.Windows.Forms.Button();
            this.butEsc = new System.Windows.Forms.Button();
            ((System.ComponentModel.ISupportInitialize)(this.GridViewBookInfo)).BeginInit();
            this.SuspendLayout();
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(31, 36);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(47, 12);
            this.label1.TabIndex = 0;
            this.label1.Text = "图书名:";
            // 
            // txtBookName
            // 
            this.txtBookName.Location = new System.Drawing.Point(74, 33);
            this.txtBookName.Name = "txtBookName";
            this.txtBookName.Size = new System.Drawing.Size(116, 21);
            this.txtBookName.TabIndex = 1;
            this.txtBookName.TextChanged += new System.EventHandler(this.txtBookName_TextChanged);
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(240, 36);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(59, 12);
            this.label2.TabIndex = 2;
            this.label2.Text = "图书编号:";
            // 
            // txtBookIDorISBN
            // 
            this.txtBookIDorISBN.Location = new System.Drawing.Point(296, 33);
            this.txtBookIDorISBN.Name = "txtBookIDorISBN";
            this.txtBookIDorISBN.Size = new System.Drawing.Size(114, 21);
            this.txtBookIDorISBN.TabIndex = 3;
            this.txtBookIDorISBN.TextChanged += new System.EventHandler(this.txtBookIDorISBN_TextChanged);
            // 
            // GridViewBookInfo
            // 
            this.GridViewBookInfo.BackgroundColor = System.Drawing.Color.White;
            this.GridViewBookInfo.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.GridViewBookInfo.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.SunkenVertical;
            this.GridViewBookInfo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.GridViewBookInfo.Location = new System.Drawing.Point(-2, 86);
            this.GridViewBookInfo.Name = "GridViewBookInfo";
            this.GridViewBookInfo.RowTemplate.Height = 23;
            this.GridViewBookInfo.Size = new System.Drawing.Size(665, 307);
            this.GridViewBookInfo.TabIndex = 4;
            this.GridViewBookInfo.CellContentDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.GridViewBookInfo_CellContentDoubleClick);
            // 
            // butOK
            // 
            this.butOK.Location = new System.Drawing.Point(435, 24);
            this.butOK.Name = "butOK";
            this.butOK.Size = new System.Drawing.Size(89, 36);
            this.butOK.TabIndex = 5;
            this.butOK.Text = "选择";
            this.butOK.UseVisualStyleBackColor = true;
            this.butOK.Click += new System.EventHandler(this.butOK_Click);
            // 
            // butEsc
            // 
            this.butEsc.Location = new System.Drawing.Point(542, 24);
            this.butEsc.Name = "butEsc";
            this.butEsc.Size = new System.Drawing.Size(89, 36);
            this.butEsc.TabIndex = 6;
            this.butEsc.Text = "取消";
            this.butEsc.UseVisualStyleBackColor = true;
            this.butEsc.Click += new System.EventHandler(this.butEsc_Click);
            // 
            // frmBookInfoView
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(662, 396);
            this.Controls.Add(this.butEsc);
            this.Controls.Add(this.butOK);
            this.Controls.Add(this.GridViewBookInfo);
            this.Controls.Add(this.txtBookIDorISBN);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.txtBookName);
            this.Controls.Add(this.label1);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MinimizeBox = false;
            this.Name = "frmBookInfoView";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "图书列表选择";
            this.Load += new System.EventHandler(this.frmBookInfoView_Load);
            ((System.ComponentModel.ISupportInitialize)(this.GridViewBookInfo)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.TextBox txtBookName;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.TextBox txtBookIDorISBN;
        private System.Windows.Forms.DataGridView GridViewBookInfo;
        private System.Windows.Forms.Button butOK;
        private System.Windows.Forms.Button butEsc;
    }
}

⌨️ 快捷键说明

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