You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.3 KiB
50 lines
1.3 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Sql
|
|
{
|
|
public partial class Form5 : Form
|
|
{
|
|
public Form5()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void button1_Click(object sender, EventArgs e)//第一个按钮点击触发事件(学生信息管理)
|
|
{
|
|
Form2 form2 = new Form2();//展示form2
|
|
form2.Show();
|
|
}
|
|
|
|
private void button2_Click(object sender, EventArgs e)//第二个按钮点击触发事件(座位预约管理)
|
|
{
|
|
Form4 form4 = new Form4();
|
|
form4.Show();
|
|
}
|
|
|
|
private void button3_Click(object sender, EventArgs e)//第三个按钮点击触发事件(图书信息管理)
|
|
{
|
|
Form311 form311 = new Form311();
|
|
form311.Show();
|
|
}
|
|
|
|
private void button4_Click(object sender, EventArgs e)//第四个按钮点击触发事件(修改账户密码)
|
|
{
|
|
Form51 form51 = new Form51();
|
|
form51.Show();
|
|
}
|
|
|
|
private void Form5_FormClosed(object sender, FormClosedEventArgs e)
|
|
{
|
|
Application.Exit();
|
|
}
|
|
}
|
|
}
|