choose.cs
上传用户:zhongfine
上传日期:2022-08-01
资源大小:2860k
文件大小:1k
源码类别:

企业管理

开发平台:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. using System.Data.SqlClient;
  10. namespace 人事管理系统
  11. {
  12.     public partial class choose : Form
  13.     {
  14.         public choose()
  15.         {
  16.             InitializeComponent();
  17.         }
  18.         private void button3_Click(object sender, EventArgs e)
  19.         {
  20.             major mymajor = new major();
  21.             mymajor.label10.Text = label1.Text;
  22.             mymajor.label9.Text = label2.Text;
  23.             this.Close();
  24.             mymajor.Show();
  25.            
  26.             
  27.         }
  28.         private void button1_Click(object sender, EventArgs e)
  29.         {
  30.             this.Close();
  31.             loading myloading = new loading();
  32.             myloading.Visible=true;
  33.             
  34.         }
  35.         private void button2_Click(object sender, EventArgs e)
  36.         {
  37.             this.Close();
  38.             Application.Exit();
  39.         }
  40.     }
  41. }