📄 mdiform.designer.cs
字号:
namespace 课程安排
{
partial class MDIForm
{
/// <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.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.教师信息ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.班级信息ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.科目信息ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.课程表编排ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.打印ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.保存到数据库ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.重新载入数据ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.帮助ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.教师信息ToolStripMenuItem,
this.班级信息ToolStripMenuItem,
this.科目信息ToolStripMenuItem,
this.课程表编排ToolStripMenuItem,
this.打印ToolStripMenuItem,
this.保存到数据库ToolStripMenuItem,
this.重新载入数据ToolStripMenuItem,
this.帮助ToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(640, 24);
this.menuStrip1.TabIndex = 1;
this.menuStrip1.Text = "menuStrip1";
//
// 教师信息ToolStripMenuItem
//
this.教师信息ToolStripMenuItem.Name = "教师信息ToolStripMenuItem";
this.教师信息ToolStripMenuItem.Size = new System.Drawing.Size(65, 20);
this.教师信息ToolStripMenuItem.Text = "教师信息";
this.教师信息ToolStripMenuItem.Click += new System.EventHandler(this.教师信息ToolStripMenuItem_Click);
//
// 班级信息ToolStripMenuItem
//
this.班级信息ToolStripMenuItem.Name = "班级信息ToolStripMenuItem";
this.班级信息ToolStripMenuItem.Size = new System.Drawing.Size(65, 20);
this.班级信息ToolStripMenuItem.Text = "班级信息";
this.班级信息ToolStripMenuItem.Click += new System.EventHandler(this.班级信息ToolStripMenuItem_Click);
//
// 科目信息ToolStripMenuItem
//
this.科目信息ToolStripMenuItem.Name = "科目信息ToolStripMenuItem";
this.科目信息ToolStripMenuItem.Size = new System.Drawing.Size(65, 20);
this.科目信息ToolStripMenuItem.Text = "科目信息";
this.科目信息ToolStripMenuItem.Click += new System.EventHandler(this.科目信息ToolStripMenuItem_Click);
//
// 课程表编排ToolStripMenuItem
//
this.课程表编排ToolStripMenuItem.Name = "课程表编排ToolStripMenuItem";
this.课程表编排ToolStripMenuItem.Size = new System.Drawing.Size(77, 20);
this.课程表编排ToolStripMenuItem.Text = "课程表编排";
this.课程表编排ToolStripMenuItem.Click += new System.EventHandler(this.课程表编排ToolStripMenuItem_Click);
//
// 打印ToolStripMenuItem
//
this.打印ToolStripMenuItem.Name = "打印ToolStripMenuItem";
this.打印ToolStripMenuItem.Size = new System.Drawing.Size(77, 20);
this.打印ToolStripMenuItem.Text = "打印课程表";
this.打印ToolStripMenuItem.Click += new System.EventHandler(this.打印ToolStripMenuItem_Click);
//
// 保存到数据库ToolStripMenuItem
//
this.保存到数据库ToolStripMenuItem.Name = "保存到数据库ToolStripMenuItem";
this.保存到数据库ToolStripMenuItem.Size = new System.Drawing.Size(89, 20);
this.保存到数据库ToolStripMenuItem.Text = "保存到数据库";
this.保存到数据库ToolStripMenuItem.Click += new System.EventHandler(this.保存到数据库ToolStripMenuItem_Click);
//
// 重新载入数据ToolStripMenuItem
//
this.重新载入数据ToolStripMenuItem.Name = "重新载入数据ToolStripMenuItem";
this.重新载入数据ToolStripMenuItem.Size = new System.Drawing.Size(89, 20);
this.重新载入数据ToolStripMenuItem.Text = "重新载入数据";
this.重新载入数据ToolStripMenuItem.Click += new System.EventHandler(this.重新载入数据ToolStripMenuItem_Click);
//
// 帮助ToolStripMenuItem
//
this.帮助ToolStripMenuItem.Name = "帮助ToolStripMenuItem";
this.帮助ToolStripMenuItem.Size = new System.Drawing.Size(41, 20);
this.帮助ToolStripMenuItem.Text = "帮助";
this.帮助ToolStripMenuItem.Click += new System.EventHandler(this.帮助ToolStripMenuItem_Click);
//
// MDIForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(640, 480);
this.Controls.Add(this.menuStrip1);
this.IsMdiContainer = true;
this.MainMenuStrip = this.menuStrip1;
this.Name = "MDIForm";
this.Text = "课程表安排";
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem 教师信息ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 班级信息ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 科目信息ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 课程表编排ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 打印ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 保存到数据库ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 重新载入数据ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 帮助ToolStripMenuItem;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -