mainfrm.cs
来自「系统简介: 本系统是一个用于管理学生毕业系统的简单系统。系统包含的信息包括学生」· CS 代码 · 共 53 行
CS
53 行
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace graduationNET
{
public partial class MainFrm : Form
{
public MainFrm()
{
InitializeComponent();
}
private void interninfo_Click(object sender, EventArgs e)
{
internship ins = new internship();
ins.MdiParent = this;
ins.Show();
}
private void skillinfo_Click(object sender, EventArgs e)
{
skill s = new skill();
s.MdiParent = this;
s.Show();
}
private void thesisinfo_Click(object sender, EventArgs e)
{
thesis t = new thesis();
t.MdiParent = this;
t.Show();
}
private void graduainfo_Click(object sender, EventArgs e)
{
gradinfo gi = new gradinfo();
gi.MdiParent = this;
gi.Show();
}
private void graduasearch_Click(object sender, EventArgs e)
{
search gs = new search();
gs.MdiParent = this;
gs.Show();
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?