mainfrm.designer.cs
来自「系统简介: 本系统是一个用于管理学生毕业系统的简单系统。系统包含的信息包括学生」· CS 代码 · 共 165 行
CS
165 行
namespace graduationNET
{
partial class MainFrm
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainFrm));
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.gradexam = new System.Windows.Forms.ToolStripMenuItem();
this.interninfo = new System.Windows.Forms.ToolStripMenuItem();
this.skillinfo = new System.Windows.Forms.ToolStripMenuItem();
this.thesisinfo = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.SCinfo = new System.Windows.Forms.ToolStripMenuItem();
this.statusinfo = new System.Windows.Forms.ToolStripMenuItem();
this.gradmanage = new System.Windows.Forms.ToolStripMenuItem();
this.graduainfo = new System.Windows.Forms.ToolStripMenuItem();
this.graduasearch = new System.Windows.Forms.ToolStripMenuItem();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.gradexam,
this.gradmanage});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(739, 24);
this.menuStrip1.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1";
//
// gradexam
//
this.gradexam.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.interninfo,
this.skillinfo,
this.thesisinfo,
this.toolStripSeparator1,
this.SCinfo,
this.statusinfo});
this.gradexam.Name = "gradexam";
this.gradexam.Size = new System.Drawing.Size(67, 20);
this.gradexam.Text = "毕业审核";
//
// interninfo
//
this.interninfo.Name = "interninfo";
this.interninfo.Size = new System.Drawing.Size(146, 22);
this.interninfo.Text = "实习情况";
this.interninfo.Click += new System.EventHandler(this.interninfo_Click);
//
// skillinfo
//
this.skillinfo.Name = "skillinfo";
this.skillinfo.Size = new System.Drawing.Size(146, 22);
this.skillinfo.Text = "技能培训";
this.skillinfo.Click += new System.EventHandler(this.skillinfo_Click);
//
// thesisinfo
//
this.thesisinfo.Name = "thesisinfo";
this.thesisinfo.Size = new System.Drawing.Size(146, 22);
this.thesisinfo.Text = "论文完成情况";
this.thesisinfo.Click += new System.EventHandler(this.thesisinfo_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(143, 6);
//
// SCinfo
//
this.SCinfo.Name = "SCinfo";
this.SCinfo.Size = new System.Drawing.Size(146, 22);
this.SCinfo.Text = "选课成绩";
//
// statusinfo
//
this.statusinfo.Name = "statusinfo";
this.statusinfo.Size = new System.Drawing.Size(146, 22);
this.statusinfo.Text = "学籍";
//
// gradmanage
//
this.gradmanage.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.graduainfo,
this.graduasearch});
this.gradmanage.Name = "gradmanage";
this.gradmanage.Size = new System.Drawing.Size(67, 20);
this.gradmanage.Text = "毕业管理";
//
// graduainfo
//
this.graduainfo.Name = "graduainfo";
this.graduainfo.Size = new System.Drawing.Size(134, 22);
this.graduainfo.Text = "毕业生信息";
this.graduainfo.Click += new System.EventHandler(this.graduainfo_Click);
//
// graduasearch
//
this.graduasearch.Name = "graduasearch";
this.graduasearch.Size = new System.Drawing.Size(134, 22);
this.graduasearch.Text = "毕业生查询";
this.graduasearch.Click += new System.EventHandler(this.graduasearch_Click);
//
// MainFrm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Control;
this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
this.ClientSize = new System.Drawing.Size(739, 396);
this.Controls.Add(this.menuStrip1);
this.IsMdiContainer = true;
this.MainMenuStrip = this.menuStrip1;
this.Name = "MainFrm";
this.Text = "学生毕业管理系统";
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem gradexam;
private System.Windows.Forms.ToolStripMenuItem interninfo;
private System.Windows.Forms.ToolStripMenuItem skillinfo;
private System.Windows.Forms.ToolStripMenuItem thesisinfo;
private System.Windows.Forms.ToolStripMenuItem gradmanage;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripMenuItem SCinfo;
private System.Windows.Forms.ToolStripMenuItem statusinfo;
private System.Windows.Forms.ToolStripMenuItem graduainfo;
private System.Windows.Forms.ToolStripMenuItem graduasearch;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?