📄 mainfrm.cs
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -