FrmGeShou.cs
资源名称:KTV.rar [点击查看]
上传用户:fzwcsgshou
上传日期:2022-07-30
资源大小:28414k
文件大小:1k
源码类别:
行业应用
开发平台:
Visual C++
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Text;
- using System.Windows.Forms;
- namespace KTV
- {
- public partial class FrmGeShou : Form
- {
- public FrmGeShou()
- {
- InitializeComponent();
- }
- private void DiQu_Click(object sender, EventArgs e)
- {
- FrmDiQu FrmDiQu1 = new FrmDiQu();
- FrmDiQu1.Show();
- this.Close();
- }
- private void QuanBu_Click(object sender, EventArgs e)
- {
- FrmGeShouList FrmGeShouList1 = new FrmGeShouList();
- FrmGeShouList1.ds = KTVData.KTVDB.SelectGeShou("", "");
- FrmGeShouList1.Show();
- this.Close();
- }
- private void XinBie_Click(object sender, EventArgs e)
- {
- FrmSex FrmSex1 = new FrmSex();
- FrmSex1.Show();
- this.Close();
- }
- }
- }