📄 formcourseadd.designer.cs
字号:
namespace StudentManager
{
partial class FormCourseAdd
{
/// <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.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.textBoxCNo = new System.Windows.Forms.TextBox();
this.labelCNo = new System.Windows.Forms.Label();
this.buttonReset = new System.Windows.Forms.Button();
this.buttonAdd = new System.Windows.Forms.Button();
this.labelCName = new System.Windows.Forms.Label();
this.buttonClose = new System.Windows.Forms.Button();
this.dataGridViewPreView = new System.Windows.Forms.DataGridView();
this.textBoxCName = new System.Windows.Forms.TextBox();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridViewPreView)).BeginInit();
this.SuspendLayout();
//
// splitContainer1
//
this.splitContainer1.Location = new System.Drawing.Point(8, 18);
this.splitContainer1.Name = "splitContainer1";
//
// splitContainer1.Panel1
//
this.splitContainer1.Panel1.Controls.Add(this.textBoxCNo);
this.splitContainer1.Panel1.Controls.Add(this.textBoxCName);
this.splitContainer1.Panel1.Controls.Add(this.labelCNo);
this.splitContainer1.Panel1.Controls.Add(this.buttonReset);
this.splitContainer1.Panel1.Controls.Add(this.buttonAdd);
this.splitContainer1.Panel1.Controls.Add(this.labelCName);
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.buttonClose);
this.splitContainer1.Panel2.Controls.Add(this.dataGridViewPreView);
this.splitContainer1.Size = new System.Drawing.Size(871, 507);
this.splitContainer1.SplitterDistance = 261;
this.splitContainer1.TabIndex = 4;
//
// textBoxCNo
//
this.textBoxCNo.Location = new System.Drawing.Point(82, 116);
this.textBoxCNo.Name = "textBoxCNo";
this.textBoxCNo.Size = new System.Drawing.Size(155, 21);
this.textBoxCNo.TabIndex = 1;
//
// labelCNo
//
this.labelCNo.AutoSize = true;
this.labelCNo.Location = new System.Drawing.Point(8, 119);
this.labelCNo.Name = "labelCNo";
this.labelCNo.Size = new System.Drawing.Size(53, 12);
this.labelCNo.TabIndex = 2;
this.labelCNo.Text = "课程编号";
//
// buttonReset
//
this.buttonReset.Location = new System.Drawing.Point(162, 230);
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);
//
// buttonAdd
//
this.buttonAdd.Location = new System.Drawing.Point(46, 230);
this.buttonAdd.Name = "buttonAdd";
this.buttonAdd.Size = new System.Drawing.Size(75, 23);
this.buttonAdd.TabIndex = 8;
this.buttonAdd.Text = "添加";
this.buttonAdd.UseVisualStyleBackColor = true;
this.buttonAdd.Click += new System.EventHandler(this.buttonAdd_Click);
//
// labelCName
//
this.labelCName.AutoSize = true;
this.labelCName.Location = new System.Drawing.Point(8, 160);
this.labelCName.Name = "labelCName";
this.labelCName.Size = new System.Drawing.Size(53, 12);
this.labelCName.TabIndex = 2;
this.labelCName.Text = "课程名称";
//
// 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);
//
// 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;
//
// textBoxCName
//
this.textBoxCName.Location = new System.Drawing.Point(82, 157);
this.textBoxCName.Name = "textBoxCName";
this.textBoxCName.Size = new System.Drawing.Size(155, 21);
this.textBoxCName.TabIndex = 2;
//
// FormCourseAdd
//
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 = "FormCourseAdd";
this.Text = "添加课程";
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
this.Load += new System.EventHandler(this.FormCourseAdd_Load);
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel1.PerformLayout();
this.splitContainer1.Panel2.ResumeLayout(false);
this.splitContainer1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.dataGridViewPreView)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.SplitContainer splitContainer1;
private System.Windows.Forms.TextBox textBoxCNo;
private System.Windows.Forms.Label labelCNo;
private System.Windows.Forms.Button buttonReset;
private System.Windows.Forms.Button buttonAdd;
private System.Windows.Forms.Label labelCName;
private System.Windows.Forms.Button buttonClose;
private System.Windows.Forms.DataGridView dataGridViewPreView;
private System.Windows.Forms.TextBox textBoxCName;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -