ab56a9bcf7
SVN-Revision: r240
53 lines
1.2 KiB
C#
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();
|
|
|
|
}
|
|
}
|
|
}
|