Files
lserp_cs_6.0/其他程序/Lserp_UpdateEmp/Lserp_UpdateEmp/xuanze.cs
T
cyf ab56a9bcf7 基线 SVN r240
SVN-Revision: r240
2025-02-06 06:46:06 +00:00

53 lines
1.2 KiB
C#

using Lskj.Core;
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 lserp_UpdateDepart
{
public partial class xuanze : Form
{
public xuanze()
{
InitializeComponent();
}
private void btn_Depart_Click(object sender, EventArgs e)
{
this.timer1.Enabled = false;
UpdateDepart d = new UpdateDepart();
d.ShowDialog();
}
private void btn_Emp_Click(object sender, EventArgs e)
{
this.timer1.Enabled = false;
Form1 r = new Form1();
r.ShowDialog();
}
private void btn_config_Click(object sender, EventArgs e)
{
this.timer1.Enabled = false;
DBConfig.Instance.CreateConnection();
config c = new config();
c.ShowDialog();
}
private void timer1_Tick(object sender, EventArgs e)
{
this.timer1.Enabled = false;
Form1 r = new Form1();
r.ShowDialog();
}
}
}