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

📄 department.designer.cs

📁 学生管理(包括学生成绩 档案和课程) 学生可以录入数据
💻 CS
字号:
namespace StudentManager
{
    partial class Department
    {
        /// <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.groupBox1 = new System.Windows.Forms.GroupBox();
            this.textTelNo = new System.Windows.Forms.TextBox();
            this.label2 = new System.Windows.Forms.Label();
            this.textDepName = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            this.textDepID = new System.Windows.Forms.TextBox();
            this.label = new System.Windows.Forms.Label();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.butExit = new System.Windows.Forms.Button();
            this.btnApply = new System.Windows.Forms.Button();
            this.butcanall = new System.Windows.Forms.Button();
            this.btnCancel = new System.Windows.Forms.Button();
            this.butDel = new System.Windows.Forms.Button();
            this.butModify = new System.Windows.Forms.Button();
            this.butAdd = new System.Windows.Forms.Button();
            this.dataGridView1 = new System.Windows.Forms.DataGridView();
            this.groupBox1.SuspendLayout();
            this.groupBox2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
            this.SuspendLayout();
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.textTelNo);
            this.groupBox1.Controls.Add(this.label2);
            this.groupBox1.Controls.Add(this.textDepName);
            this.groupBox1.Controls.Add(this.label1);
            this.groupBox1.Controls.Add(this.textDepID);
            this.groupBox1.Controls.Add(this.label);
            this.groupBox1.Location = new System.Drawing.Point(12, 12);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(617, 68);
            this.groupBox1.TabIndex = 0;
            this.groupBox1.TabStop = false;
            // 
            // textTelNo
            // 
            this.textTelNo.Location = new System.Drawing.Point(485, 29);
            this.textTelNo.Name = "textTelNo";
            this.textTelNo.Size = new System.Drawing.Size(100, 21);
            this.textTelNo.TabIndex = 5;
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(397, 32);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(71, 12);
            this.label2.TabIndex = 4;
            this.label2.Text = "电话号码 :";
            // 
            // textDepName
            // 
            this.textDepName.Location = new System.Drawing.Point(278, 29);
            this.textDepName.Name = "textDepName";
            this.textDepName.Size = new System.Drawing.Size(100, 21);
            this.textDepName.TabIndex = 3;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(201, 29);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(71, 12);
            this.label1.TabIndex = 2;
            this.label1.Text = "院系名称 :";
            // 
            // textDepID
            // 
            this.textDepID.Location = new System.Drawing.Point(79, 26);
            this.textDepID.Name = "textDepID";
            this.textDepID.Size = new System.Drawing.Size(92, 21);
            this.textDepID.TabIndex = 1;
            // 
            // label
            // 
            this.label.AutoSize = true;
            this.label.Location = new System.Drawing.Point(6, 29);
            this.label.Name = "label";
            this.label.Size = new System.Drawing.Size(65, 12);
            this.label.TabIndex = 0;
            this.label.Text = "院系代码 :";
            // 
            // groupBox2
            // 
            this.groupBox2.Controls.Add(this.butExit);
            this.groupBox2.Controls.Add(this.btnApply);
            this.groupBox2.Controls.Add(this.butcanall);
            this.groupBox2.Controls.Add(this.btnCancel);
            this.groupBox2.Controls.Add(this.butDel);
            this.groupBox2.Controls.Add(this.butModify);
            this.groupBox2.Controls.Add(this.butAdd);
            this.groupBox2.Location = new System.Drawing.Point(20, 128);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(609, 55);
            this.groupBox2.TabIndex = 1;
            this.groupBox2.TabStop = false;
            // 
            // butExit
            // 
            this.butExit.BackColor = System.Drawing.Color.Gray;
            this.butExit.Location = new System.Drawing.Point(493, 20);
            this.butExit.Name = "butExit";
            this.butExit.Size = new System.Drawing.Size(75, 23);
            this.butExit.TabIndex = 6;
            this.butExit.Text = "退出";
            this.butExit.UseVisualStyleBackColor = false;
            this.butExit.Click += new System.EventHandler(this.butExit_Click);
            // 
            // btnApply
            // 
            this.btnApply.Location = new System.Drawing.Point(407, 20);
            this.btnApply.Name = "btnApply";
            this.btnApply.Size = new System.Drawing.Size(60, 23);
            this.btnApply.TabIndex = 5;
            this.btnApply.Text = "确定";
            this.btnApply.UseVisualStyleBackColor = true;
            this.btnApply.Click += new System.EventHandler(this.btnApply_Click);
            // 
            // butcanall
            // 
            this.butcanall.Location = new System.Drawing.Point(322, 20);
            this.butcanall.Name = "butcanall";
            this.butcanall.Size = new System.Drawing.Size(68, 23);
            this.butcanall.TabIndex = 4;
            this.butcanall.Text = "全部取消";
            this.butcanall.UseVisualStyleBackColor = true;
            this.butcanall.Click += new System.EventHandler(this.butcanall_Click);
            // 
            // btnCancel
            // 
            this.btnCancel.Location = new System.Drawing.Point(246, 20);
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.Size = new System.Drawing.Size(60, 23);
            this.btnCancel.TabIndex = 3;
            this.btnCancel.Text = "取消";
            this.btnCancel.UseVisualStyleBackColor = true;
            this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
            // 
            // butDel
            // 
            this.butDel.Location = new System.Drawing.Point(168, 20);
            this.butDel.Name = "butDel";
            this.butDel.Size = new System.Drawing.Size(60, 23);
            this.butDel.TabIndex = 2;
            this.butDel.Text = "删除";
            this.butDel.UseVisualStyleBackColor = true;
            this.butDel.Click += new System.EventHandler(this.butDel_Click);
            // 
            // butModify
            // 
            this.butModify.Location = new System.Drawing.Point(94, 20);
            this.butModify.Name = "butModify";
            this.butModify.Size = new System.Drawing.Size(60, 23);
            this.butModify.TabIndex = 1;
            this.butModify.Text = "修改";
            this.butModify.UseVisualStyleBackColor = true;
            this.butModify.Click += new System.EventHandler(this.butModify_Click);
            // 
            // butAdd
            // 
            this.butAdd.Location = new System.Drawing.Point(19, 20);
            this.butAdd.Name = "butAdd";
            this.butAdd.Size = new System.Drawing.Size(60, 23);
            this.butAdd.TabIndex = 0;
            this.butAdd.Text = "添加";
            this.butAdd.UseVisualStyleBackColor = true;
            this.butAdd.Click += new System.EventHandler(this.butAdd_Click);
            // 
            // dataGridView1
            // 
            this.dataGridView1.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
            this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridView1.Location = new System.Drawing.Point(59, 223);
            this.dataGridView1.Name = "dataGridView1";
            this.dataGridView1.RowTemplate.Height = 23;
            this.dataGridView1.Size = new System.Drawing.Size(363, 176);
            this.dataGridView1.TabIndex = 2;
            // 
            // Department
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.Color.White;
            this.ClientSize = new System.Drawing.Size(641, 438);
            this.Controls.Add(this.dataGridView1);
            this.Controls.Add(this.groupBox2);
            this.Controls.Add(this.groupBox1);
            this.Name = "Department";
            this.Text = "院系管理";
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.groupBox2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.GroupBox groupBox1;
        private System.Windows.Forms.TextBox textTelNo;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.TextBox textDepName;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.TextBox textDepID;
        private System.Windows.Forms.Label label;
        private System.Windows.Forms.GroupBox groupBox2;
        private System.Windows.Forms.Button butDel;
        private System.Windows.Forms.Button butModify;
        private System.Windows.Forms.Button butAdd;
        private System.Windows.Forms.Button butcanall;
        private System.Windows.Forms.Button btnCancel;
        private System.Windows.Forms.Button butExit;
        private System.Windows.Forms.Button btnApply;
        private System.Windows.Forms.DataGridView dataGridView1;
    }
}

⌨️ 快捷键说明

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