📄 formstudentadd.designer.cs
字号:
this.radioButtonMale.TabIndex = 4;
this.radioButtonMale.TabStop = true;
this.radioButtonMale.Text = "男";
this.radioButtonMale.UseVisualStyleBackColor = true;
//
// textBoxSAge
//
this.textBoxSAge.Location = new System.Drawing.Point(82, 196);
this.textBoxSAge.Name = "textBoxSAge";
this.textBoxSAge.Size = new System.Drawing.Size(79, 21);
this.textBoxSAge.TabIndex = 3;
//
// labelEnterYear
//
this.labelEnterYear.AutoSize = true;
this.labelEnterYear.Location = new System.Drawing.Point(9, 316);
this.labelEnterYear.Name = "labelEnterYear";
this.labelEnterYear.Size = new System.Drawing.Size(53, 12);
this.labelEnterYear.TabIndex = 2;
this.labelEnterYear.Text = "入学年份";
//
// textBoxSNo
//
this.textBoxSNo.Location = new System.Drawing.Point(82, 116);
this.textBoxSNo.Name = "textBoxSNo";
this.textBoxSNo.Size = new System.Drawing.Size(155, 21);
this.textBoxSNo.TabIndex = 1;
//
// labelDepartment
//
this.labelDepartment.AutoSize = true;
this.labelDepartment.Location = new System.Drawing.Point(8, 278);
this.labelDepartment.Name = "labelDepartment";
this.labelDepartment.Size = new System.Drawing.Size(53, 12);
this.labelDepartment.TabIndex = 2;
this.labelDepartment.Text = "院 系";
//
// labelSGender
//
this.labelSGender.AutoSize = true;
this.labelSGender.Location = new System.Drawing.Point(8, 236);
this.labelSGender.Name = "labelSGender";
this.labelSGender.Size = new System.Drawing.Size(53, 12);
this.labelSGender.TabIndex = 2;
this.labelSGender.Text = "性 别";
//
// labelSAge
//
this.labelSAge.AutoSize = true;
this.labelSAge.Location = new System.Drawing.Point(8, 199);
this.labelSAge.Name = "labelSAge";
this.labelSAge.Size = new System.Drawing.Size(53, 12);
this.labelSAge.TabIndex = 2;
this.labelSAge.Text = "年 龄";
//
// labelSNo
//
this.labelSNo.AutoSize = true;
this.labelSNo.Location = new System.Drawing.Point(8, 119);
this.labelSNo.Name = "labelSNo";
this.labelSNo.Size = new System.Drawing.Size(53, 12);
this.labelSNo.TabIndex = 2;
this.labelSNo.Text = "学 号";
//
// buttonReset
//
this.buttonReset.Location = new System.Drawing.Point(144, 380);
this.buttonReset.Name = "buttonReset";
this.buttonReset.Size = new System.Drawing.Size(75, 23);
this.buttonReset.TabIndex = 9;
this.buttonReset.Text = "重置";
this.buttonReset.UseVisualStyleBackColor = true;
this.buttonReset.Click += new System.EventHandler(this.buttonReset_Click);
//
// labelDataDesc
//
this.labelDataDesc.AutoSize = true;
this.labelDataDesc.Location = new System.Drawing.Point(194, 477);
this.labelDataDesc.Name = "labelDataDesc";
this.labelDataDesc.Size = new System.Drawing.Size(0, 12);
this.labelDataDesc.TabIndex = 9;
//
// dataGridViewPreView
//
this.dataGridViewPreView.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
this.dataGridViewPreView.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
this.dataGridViewPreView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridViewPreView.Location = new System.Drawing.Point(6, 3);
this.dataGridViewPreView.Name = "dataGridViewPreView";
this.dataGridViewPreView.RowTemplate.Height = 23;
this.dataGridViewPreView.Size = new System.Drawing.Size(597, 459);
this.dataGridViewPreView.TabIndex = 0;
//
// buttonPreview
//
this.buttonPreview.Location = new System.Drawing.Point(102, 472);
this.buttonPreview.Name = "buttonPreview";
this.buttonPreview.Size = new System.Drawing.Size(75, 23);
this.buttonPreview.TabIndex = 8;
this.buttonPreview.Text = "预览";
this.buttonPreview.UseVisualStyleBackColor = true;
this.buttonPreview.Click += new System.EventHandler(this.buttonPreview_Click);
//
// buttonClose
//
this.buttonClose.Location = new System.Drawing.Point(528, 472);
this.buttonClose.Name = "buttonClose";
this.buttonClose.Size = new System.Drawing.Size(75, 23);
this.buttonClose.TabIndex = 8;
this.buttonClose.Text = "关闭";
this.buttonClose.UseVisualStyleBackColor = true;
this.buttonClose.Click += new System.EventHandler(this.buttonClose_Click);
//
// FormAddStudents
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(886, 543);
this.Controls.Add(this.splitContainer1);
this.Name = "FormAddStudents";
this.Text = "学生入学";
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
this.Load += new System.EventHandler(this.FormAddStudents_Load);
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel1.PerformLayout();
this.splitContainer1.Panel2.ResumeLayout(false);
this.splitContainer1.Panel2.PerformLayout();
this.splitContainer1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.dataGridViewPreView)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button buttonAdd;
private System.Windows.Forms.TextBox textBoxSName;
private System.Windows.Forms.Label labelSName;
private System.Windows.Forms.SplitContainer splitContainer1;
private System.Windows.Forms.TextBox textBoxSAge;
private System.Windows.Forms.Label labelSAge;
private System.Windows.Forms.RadioButton radioButtonFemale;
private System.Windows.Forms.RadioButton radioButtonMale;
private System.Windows.Forms.Label labelSGender;
private System.Windows.Forms.ComboBox comboBoxDepartment;
private System.Windows.Forms.Label labelDepartment;
private System.Windows.Forms.ComboBox comboBoxEnterYear;
private System.Windows.Forms.Label labelEnterYear;
private System.Windows.Forms.TextBox textBoxSNo;
private System.Windows.Forms.Label labelSNo;
private System.Windows.Forms.Button buttonReset;
private System.Windows.Forms.DataGridView dataGridViewPreView;
private System.Windows.Forms.Button buttonPreview;
private System.Windows.Forms.Label labelDataDesc;
private System.Windows.Forms.Button buttonClose;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -