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

📄 form1.designer.cs

📁 一个学生管理系统
💻 CS
字号:
namespace MySchoolPrj
{
    partial class MyStudentInfoFrm
    {
        /// <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.btnAdd = new System.Windows.Forms.Button();
            this.btnUpdate = new System.Windows.Forms.Button();
            this.btnDelete = new System.Windows.Forms.Button();
            this.btnSave = new System.Windows.Forms.Button();
            this.btnCancel = new System.Windows.Forms.Button();
            this.btnClose = new System.Windows.Forms.Button();
            this.lstStuInfo = new System.Windows.Forms.ListView();
            this.chStuNo = new System.Windows.Forms.ColumnHeader();
            this.chStuName = new System.Windows.Forms.ColumnHeader();
            this.chAge = new System.Windows.Forms.ColumnHeader();
            this.chSex = new System.Windows.Forms.ColumnHeader();
            this.chBirthDay = new System.Windows.Forms.ColumnHeader();
            this.label1 = new System.Windows.Forms.Label();
            this.gbEdition = new System.Windows.Forms.GroupBox();
            this.dtpkBirthDay = new System.Windows.Forms.DateTimePicker();
            this.rdtbnWoman = new System.Windows.Forms.RadioButton();
            this.rdbtnMan = new System.Windows.Forms.RadioButton();
            this.label6 = new System.Windows.Forms.Label();
            this.label5 = new System.Windows.Forms.Label();
            this.txtAge = new System.Windows.Forms.TextBox();
            this.label4 = new System.Windows.Forms.Label();
            this.txtStuName = new System.Windows.Forms.TextBox();
            this.label3 = new System.Windows.Forms.Label();
            this.txtStuNo = new System.Windows.Forms.TextBox();
            this.label2 = new System.Windows.Forms.Label();
            this.gbEdition.SuspendLayout();
            this.SuspendLayout();
            // 
            // btnAdd
            // 
            this.btnAdd.Location = new System.Drawing.Point(12, 238);
            this.btnAdd.Name = "btnAdd";
            this.btnAdd.Size = new System.Drawing.Size(62, 23);
            this.btnAdd.TabIndex = 0;
            this.btnAdd.Text = "增加";
            this.btnAdd.UseVisualStyleBackColor = true;
            this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
            // 
            // btnUpdate
            // 
            this.btnUpdate.Location = new System.Drawing.Point(108, 238);
            this.btnUpdate.Name = "btnUpdate";
            this.btnUpdate.Size = new System.Drawing.Size(62, 23);
            this.btnUpdate.TabIndex = 0;
            this.btnUpdate.Text = "修改";
            this.btnUpdate.UseVisualStyleBackColor = true;
            this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
            // 
            // btnDelete
            // 
            this.btnDelete.Location = new System.Drawing.Point(195, 238);
            this.btnDelete.Name = "btnDelete";
            this.btnDelete.Size = new System.Drawing.Size(62, 23);
            this.btnDelete.TabIndex = 0;
            this.btnDelete.Text = "删除";
            this.btnDelete.UseVisualStyleBackColor = true;
            this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
            // 
            // btnSave
            // 
            this.btnSave.Location = new System.Drawing.Point(305, 238);
            this.btnSave.Name = "btnSave";
            this.btnSave.Size = new System.Drawing.Size(62, 23);
            this.btnSave.TabIndex = 0;
            this.btnSave.Text = "保存";
            this.btnSave.UseVisualStyleBackColor = true;
            this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
            // 
            // btnCancel
            // 
            this.btnCancel.Location = new System.Drawing.Point(383, 238);
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.Size = new System.Drawing.Size(62, 23);
            this.btnCancel.TabIndex = 0;
            this.btnCancel.Text = "取消";
            this.btnCancel.UseVisualStyleBackColor = true;
            this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
            // 
            // btnClose
            // 
            this.btnClose.Location = new System.Drawing.Point(481, 238);
            this.btnClose.Name = "btnClose";
            this.btnClose.Size = new System.Drawing.Size(62, 23);
            this.btnClose.TabIndex = 0;
            this.btnClose.Text = "退出";
            this.btnClose.UseVisualStyleBackColor = true;
            this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
            // 
            // lstStuInfo
            // 
            this.lstStuInfo.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.chStuNo,
            this.chStuName,
            this.chAge,
            this.chSex,
            this.chBirthDay});
            this.lstStuInfo.GridLines = true;
            this.lstStuInfo.Location = new System.Drawing.Point(2, 31);
            this.lstStuInfo.Name = "lstStuInfo";
            this.lstStuInfo.Size = new System.Drawing.Size(550, 124);
            this.lstStuInfo.TabIndex = 1;
            this.lstStuInfo.UseCompatibleStateImageBehavior = false;
            this.lstStuInfo.View = System.Windows.Forms.View.Details;
            // 
            // chStuNo
            // 
            this.chStuNo.Text = "学号";
            this.chStuNo.Width = 100;
            // 
            // chStuName
            // 
            this.chStuName.Text = "姓名";
            this.chStuName.Width = 100;
            // 
            // chAge
            // 
            this.chAge.Text = "年龄";
            this.chAge.Width = 100;
            // 
            // chSex
            // 
            this.chSex.Text = "性别";
            this.chSex.Width = 100;
            // 
            // chBirthDay
            // 
            this.chBirthDay.Text = "出生日期";
            this.chBirthDay.Width = 145;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.label1.Location = new System.Drawing.Point(191, 9);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(155, 19);
            this.label1.TabIndex = 2;
            this.label1.Text = "学  生  管  理";
            // 
            // gbEdition
            // 
            this.gbEdition.Controls.Add(this.dtpkBirthDay);
            this.gbEdition.Controls.Add(this.rdtbnWoman);
            this.gbEdition.Controls.Add(this.rdbtnMan);
            this.gbEdition.Controls.Add(this.label6);
            this.gbEdition.Controls.Add(this.label5);
            this.gbEdition.Controls.Add(this.txtAge);
            this.gbEdition.Controls.Add(this.label4);
            this.gbEdition.Controls.Add(this.txtStuName);
            this.gbEdition.Controls.Add(this.label3);
            this.gbEdition.Controls.Add(this.txtStuNo);
            this.gbEdition.Controls.Add(this.label2);
            this.gbEdition.Location = new System.Drawing.Point(12, 161);
            this.gbEdition.Name = "gbEdition";
            this.gbEdition.Size = new System.Drawing.Size(537, 71);
            this.gbEdition.TabIndex = 3;
            this.gbEdition.TabStop = false;
            this.gbEdition.Text = "信息编辑";
            // 
            // dtpkBirthDay
            // 
            this.dtpkBirthDay.Format = System.Windows.Forms.DateTimePickerFormat.Short;
            this.dtpkBirthDay.Location = new System.Drawing.Point(395, 13);
            this.dtpkBirthDay.Name = "dtpkBirthDay";
            this.dtpkBirthDay.Size = new System.Drawing.Size(134, 21);
            this.dtpkBirthDay.TabIndex = 3;
            // 
            // rdtbnWoman
            // 
            this.rdtbnWoman.AutoSize = true;
            this.rdtbnWoman.Location = new System.Drawing.Point(293, 46);
            this.rdtbnWoman.Name = "rdtbnWoman";
            this.rdtbnWoman.Size = new System.Drawing.Size(35, 16);
            this.rdtbnWoman.TabIndex = 2;
            this.rdtbnWoman.TabStop = true;
            this.rdtbnWoman.Text = "女";
            this.rdtbnWoman.UseVisualStyleBackColor = true;
            // 
            // rdbtnMan
            // 
            this.rdbtnMan.AutoSize = true;
            this.rdbtnMan.Location = new System.Drawing.Point(233, 46);
            this.rdbtnMan.Name = "rdbtnMan";
            this.rdbtnMan.Size = new System.Drawing.Size(35, 16);
            this.rdbtnMan.TabIndex = 2;
            this.rdbtnMan.TabStop = true;
            this.rdbtnMan.Text = "男";
            this.rdbtnMan.UseVisualStyleBackColor = true;
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Location = new System.Drawing.Point(336, 17);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(53, 12);
            this.label6.TabIndex = 0;
            this.label6.Text = "出生日期";
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(174, 46);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(53, 12);
            this.label5.TabIndex = 0;
            this.label5.Text = "学生性别";
            // 
            // txtAge
            // 
            this.txtAge.Location = new System.Drawing.Point(228, 13);
            this.txtAge.MaxLength = 2;
            this.txtAge.Name = "txtAge";
            this.txtAge.Size = new System.Drawing.Size(100, 21);
            this.txtAge.TabIndex = 1;
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(174, 17);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(53, 12);
            this.label4.TabIndex = 0;
            this.label4.Text = "学生年龄";
            // 
            // txtStuName
            // 
            this.txtStuName.Location = new System.Drawing.Point(68, 41);
            this.txtStuName.MaxLength = 30;
            this.txtStuName.Name = "txtStuName";
            this.txtStuName.Size = new System.Drawing.Size(100, 21);
            this.txtStuName.TabIndex = 1;
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(9, 44);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(53, 12);
            this.label3.TabIndex = 0;
            this.label3.Text = "学生姓名";
            // 
            // txtStuNo
            // 
            this.txtStuNo.Location = new System.Drawing.Point(68, 13);
            this.txtStuNo.MaxLength = 20;
            this.txtStuNo.Name = "txtStuNo";
            this.txtStuNo.Size = new System.Drawing.Size(100, 21);
            this.txtStuNo.TabIndex = 1;
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(9, 17);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(53, 12);
            this.label2.TabIndex = 0;
            this.label2.Text = "学生编号";
            // 
            // MyStudentInfoFrm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(555, 273);
            this.Controls.Add(this.gbEdition);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.lstStuInfo);
            this.Controls.Add(this.btnClose);
            this.Controls.Add(this.btnCancel);
            this.Controls.Add(this.btnSave);
            this.Controls.Add(this.btnDelete);
            this.Controls.Add(this.btnUpdate);
            this.Controls.Add(this.btnAdd);
            this.Name = "MyStudentInfoFrm";
            this.Text = "学生管理系统";
            this.Load += new System.EventHandler(this.MyStudentInfoFrm_Load);
            this.gbEdition.ResumeLayout(false);
            this.gbEdition.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.Button btnAdd;
        private System.Windows.Forms.Button btnUpdate;
        private System.Windows.Forms.Button btnDelete;
        private System.Windows.Forms.Button btnSave;
        private System.Windows.Forms.Button btnCancel;
        private System.Windows.Forms.Button btnClose;
        private System.Windows.Forms.ListView lstStuInfo;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.GroupBox gbEdition;
        private System.Windows.Forms.DateTimePicker dtpkBirthDay;
        private System.Windows.Forms.RadioButton rdtbnWoman;
        private System.Windows.Forms.RadioButton rdbtnMan;
        private System.Windows.Forms.Label label6;
        private System.Windows.Forms.Label label5;
        private System.Windows.Forms.TextBox txtAge;
        private System.Windows.Forms.Label label4;
        private System.Windows.Forms.TextBox txtStuName;
        private System.Windows.Forms.Label label3;
        private System.Windows.Forms.TextBox txtStuNo;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.ColumnHeader chStuNo;
        private System.Windows.Forms.ColumnHeader chStuName;
        private System.Windows.Forms.ColumnHeader chAge;
        private System.Windows.Forms.ColumnHeader chSex;
        private System.Windows.Forms.ColumnHeader chBirthDay;
    }
}

⌨️ 快捷键说明

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