form1.cs
来自「操作系统 作业调度程序 课程设计文档 对于linux系统的学习有很大帮助」· CS 代码 · 共 46 行
CS
46 行
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace 操作系统
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Form2 f2 = new Form2();
f2.Show();
}
private void button4_Click(object sender, EventArgs e)
{
this.Dispose();
}
private void button5_Click(object sender, EventArgs e)
{
MessageBox.Show("04计算机2班 2号 黄坚","说明");
}
private void button2_Click(object sender, EventArgs e)
{
Form3 f3 = new Form3();
f3.Show();
}
private void button3_Click(object sender, EventArgs e)
{
Form4 f4 = new Form4();
f4.Show();
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?