choose.cs
上传用户:zhongfine
上传日期:2022-08-01
资源大小:2860k
文件大小:1k
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- using System.Data.SqlClient;
- namespace 人事管理系统
- {
- public partial class choose : Form
- {
- public choose()
- {
- InitializeComponent();
- }
- private void button3_Click(object sender, EventArgs e)
- {
- major mymajor = new major();
- mymajor.label10.Text = label1.Text;
- mymajor.label9.Text = label2.Text;
- this.Close();
- mymajor.Show();
-
-
- }
- private void button1_Click(object sender, EventArgs e)
- {
- this.Close();
- loading myloading = new loading();
- myloading.Visible=true;
-
- }
- private void button2_Click(object sender, EventArgs e)
- {
- this.Close();
- Application.Exit();
- }
- }
- }