1 Star 0 Fork 0

CSL/Genealogy_Manage_System

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
OrdinaryUsers.cs 1.75 KB
一键复制 编辑 原始数据 按行查看 历史
CSL 提交于 2020-07-06 09:20 . Forth Commit version
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading;
//using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Data.SqlClient;
//using System.Data.SqlClient;
namespace Genealogy_Management_System
{
public partial class OrdinaryUsers : Form
{
public static string ID;
public OrdinaryUsers()
{
InitializeComponent();
}
private void OrdinaryUsers_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
Thread th = new Thread(delegate () { new Personal_Information().ShowDialog(); });
th.Start();
this.Close();
}
private void button2_Click(object sender, EventArgs e)
{
Thread th = new Thread(delegate () { new Genealogy_Information().ShowDialog(); });
th.Start();
this.Close();
}
private void button3_Click(object sender, EventArgs e)
{
Thread th = new Thread(delegate () { new CloseRelatives_Information().ShowDialog(); });
th.Start();
this.Close();
}
private void button4_Click(object sender, EventArgs e)
{
Thread th = new Thread(delegate () { new Branch_Information().ShowDialog(); });
th.Start();
this.Close();
}
private void button5_Click(object sender, EventArgs e)
{
Thread th = new Thread(delegate () { new Family_Event().ShowDialog(); });
th.Start();
this.Close();
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/cai_shuanglian/Genealogy_Manage_System.git
git@gitee.com:cai_shuanglian/Genealogy_Manage_System.git
cai_shuanglian
Genealogy_Manage_System
Genealogy_Manage_System
master

搜索帮助