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

📄 frmmotifysmallclass.designer.cs

📁 图书馆管理系统的一个代码 很好的学习借鉴
💻 CS
字号:
namespace BookManagementSystem
{
    partial class frmMotifySmallClass
    {
        /// <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()
        {
            this.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.BigClass = new System.Windows.Forms.TextBox();
            this.OldSmallClass = new System.Windows.Forms.TextBox();
            this.NewSmallClass = new System.Windows.Forms.TextBox();
            this.Motify = new System.Windows.Forms.Button();
            this.exit = new System.Windows.Forms.Button();
            this.SuspendLayout();
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(48, 21);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(35, 12);
            this.label1.TabIndex = 0;
            this.label1.Text = "大类:";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(12, 48);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(71, 12);
            this.label2.TabIndex = 1;
            this.label2.Text = "原小类名称:";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(12, 79);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(71, 12);
            this.label3.TabIndex = 2;
            this.label3.Text = "新小类名称:";
            // 
            // BigClass
            // 
            this.BigClass.Location = new System.Drawing.Point(90, 12);
            this.BigClass.Name = "BigClass";
            this.BigClass.ReadOnly = true;
            this.BigClass.Size = new System.Drawing.Size(100, 21);
            this.BigClass.TabIndex = 3;
            // 
            // OldSmallClass
            // 
            this.OldSmallClass.Location = new System.Drawing.Point(90, 45);
            this.OldSmallClass.Name = "OldSmallClass";
            this.OldSmallClass.ReadOnly = true;
            this.OldSmallClass.Size = new System.Drawing.Size(100, 21);
            this.OldSmallClass.TabIndex = 3;
            // 
            // NewSmallClass
            // 
            this.NewSmallClass.Location = new System.Drawing.Point(90, 76);
            this.NewSmallClass.Name = "NewSmallClass";
            this.NewSmallClass.Size = new System.Drawing.Size(100, 21);
            this.NewSmallClass.TabIndex = 3;
            // 
            // Motify
            // 
            this.Motify.Location = new System.Drawing.Point(212, 12);
            this.Motify.Name = "Motify";
            this.Motify.Size = new System.Drawing.Size(75, 30);
            this.Motify.TabIndex = 4;
            this.Motify.Text = "修改";
            this.Motify.UseVisualStyleBackColor = true;
            this.Motify.Click += new System.EventHandler(this.Motify_Click);
            // 
            // exit
            // 
            this.exit.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.exit.Location = new System.Drawing.Point(212, 67);
            this.exit.Name = "exit";
            this.exit.Size = new System.Drawing.Size(75, 30);
            this.exit.TabIndex = 4;
            this.exit.Text = "关闭";
            this.exit.UseVisualStyleBackColor = true;
            this.exit.Click += new System.EventHandler(this.exit_Click);
            // 
            // frmMotifySmallClass
            // 
            this.AcceptButton = this.Motify;
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.CancelButton = this.exit;
            this.ClientSize = new System.Drawing.Size(313, 118);
            this.Controls.Add(this.exit);
            this.Controls.Add(this.Motify);
            this.Controls.Add(this.NewSmallClass);
            this.Controls.Add(this.OldSmallClass);
            this.Controls.Add(this.BigClass);
            this.Controls.Add(this.label3);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.label1);
            this.MaximizeBox = false;
            this.Name = "frmMotifySmallClass";
            this.Text = "修改小类";
            this.Load += new System.EventHandler(this.frmMotifySmallClass_Load);
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.Label label3;
        private System.Windows.Forms.TextBox BigClass;
        private System.Windows.Forms.TextBox OldSmallClass;
        private System.Windows.Forms.TextBox NewSmallClass;
        private System.Windows.Forms.Button Motify;
        private System.Windows.Forms.Button exit;
    }
}

⌨️ 快捷键说明

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