📄 score.designer.cs
字号:
namespace StudentManager
{
partial class Score
{
/// <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.comboBoxDepartment = new System.Windows.Forms.ComboBox();
this.label2 = new System.Windows.Forms.Label();
this.comboBoxClass = new System.Windows.Forms.ComboBox();
this.label3 = new System.Windows.Forms.Label();
this.comboBoxSemester = new System.Windows.Forms.ComboBox();
this.btnApply = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.btnApply2 = new System.Windows.Forms.Button();
this.comboBoxCourse = new System.Windows.Forms.ComboBox();
this.label4 = new System.Windows.Forms.Label();
this.btnOK = new System.Windows.Forms.Button();
this.btnExit = new System.Windows.Forms.Button();
this.dataGridView1 = new System.Windows.Forms.DataGridView();
this.groupBox1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(51, 37);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(41, 12);
this.label1.TabIndex = 0;
this.label1.Text = "院系:";
//
// comboBoxDepartment
//
this.comboBoxDepartment.FormattingEnabled = true;
this.comboBoxDepartment.Location = new System.Drawing.Point(111, 34);
this.comboBoxDepartment.Name = "comboBoxDepartment";
this.comboBoxDepartment.Size = new System.Drawing.Size(130, 20);
this.comboBoxDepartment.TabIndex = 1;
this.comboBoxDepartment.SelectedIndexChanged += new System.EventHandler(this.comboBoxDepartment_SelectedIndexChanged);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(268, 37);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(47, 12);
this.label2.TabIndex = 2;
this.label2.Text = "班级 :";
//
// comboBoxClass
//
this.comboBoxClass.FormattingEnabled = true;
this.comboBoxClass.Location = new System.Drawing.Point(321, 34);
this.comboBoxClass.Name = "comboBoxClass";
this.comboBoxClass.Size = new System.Drawing.Size(144, 20);
this.comboBoxClass.TabIndex = 3;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(53, 87);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(47, 12);
this.label3.TabIndex = 4;
this.label3.Text = "学期 :";
//
// comboBoxSemester
//
this.comboBoxSemester.FormattingEnabled = true;
this.comboBoxSemester.Location = new System.Drawing.Point(111, 84);
this.comboBoxSemester.Name = "comboBoxSemester";
this.comboBoxSemester.Size = new System.Drawing.Size(130, 20);
this.comboBoxSemester.TabIndex = 5;
//
// btnApply
//
this.btnApply.Location = new System.Drawing.Point(321, 87);
this.btnApply.Name = "btnApply";
this.btnApply.Size = new System.Drawing.Size(75, 23);
this.btnApply.TabIndex = 6;
this.btnApply.Text = "确定";
this.btnApply.UseVisualStyleBackColor = true;
this.btnApply.Click += new System.EventHandler(this.btnApply_Click);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.btnApply2);
this.groupBox1.Controls.Add(this.comboBoxCourse);
this.groupBox1.Controls.Add(this.label4);
this.groupBox1.Location = new System.Drawing.Point(508, 34);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(221, 116);
this.groupBox1.TabIndex = 7;
this.groupBox1.TabStop = false;
//
// btnApply2
//
this.btnApply2.Location = new System.Drawing.Point(30, 68);
this.btnApply2.Name = "btnApply2";
this.btnApply2.Size = new System.Drawing.Size(75, 23);
this.btnApply2.TabIndex = 2;
this.btnApply2.Text = "确认";
this.btnApply2.UseVisualStyleBackColor = true;
this.btnApply2.Click += new System.EventHandler(this.btnApply2_Click);
//
// comboBoxCourse
//
this.comboBoxCourse.FormattingEnabled = true;
this.comboBoxCourse.Location = new System.Drawing.Point(81, 28);
this.comboBoxCourse.Name = "comboBoxCourse";
this.comboBoxCourse.Size = new System.Drawing.Size(121, 20);
this.comboBoxCourse.TabIndex = 1;
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(28, 31);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(47, 12);
this.label4.TabIndex = 0;
this.label4.Text = "课程 :";
//
// btnOK
//
this.btnOK.Location = new System.Drawing.Point(508, 238);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(75, 23);
this.btnOK.TabIndex = 8;
this.btnOK.Text = "提交";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// btnExit
//
this.btnExit.Location = new System.Drawing.Point(508, 323);
this.btnExit.Name = "btnExit";
this.btnExit.Size = new System.Drawing.Size(75, 23);
this.btnExit.TabIndex = 9;
this.btnExit.Text = "退出";
this.btnExit.UseVisualStyleBackColor = true;
this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
//
// dataGridView1
//
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView1.Location = new System.Drawing.Point(53, 155);
this.dataGridView1.Name = "dataGridView1";
this.dataGridView1.RowTemplate.Height = 23;
this.dataGridView1.Size = new System.Drawing.Size(412, 191);
this.dataGridView1.TabIndex = 10;
//
// Score
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
this.ClientSize = new System.Drawing.Size(741, 437);
this.Controls.Add(this.dataGridView1);
this.Controls.Add(this.btnExit);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.btnApply);
this.Controls.Add(this.comboBoxSemester);
this.Controls.Add(this.label3);
this.Controls.Add(this.comboBoxClass);
this.Controls.Add(this.label2);
this.Controls.Add(this.comboBoxDepartment);
this.Controls.Add(this.label1);
this.Name = "Score";
this.Text = "成绩录入";
this.Load += new System.EventHandler(this.Score_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.ComboBox comboBoxDepartment;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.ComboBox comboBoxClass;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.ComboBox comboBoxSemester;
private System.Windows.Forms.Button btnApply;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Button btnApply2;
private System.Windows.Forms.ComboBox comboBoxCourse;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Button btnExit;
private System.Windows.Forms.DataGridView dataGridView1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -