FrmGeShou.cs
上传用户:fzwcsgshou
上传日期:2022-07-30
资源大小:28414k
文件大小:1k
源码类别:

行业应用

开发平台:

Visual C++

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. namespace KTV
  9. {
  10.     public partial class FrmGeShou : Form
  11.     {
  12.         public FrmGeShou()
  13.         {
  14.             InitializeComponent();
  15.         }
  16.         private void DiQu_Click(object sender, EventArgs e)
  17.         {
  18.             FrmDiQu FrmDiQu1 = new FrmDiQu();
  19.             FrmDiQu1.Show();
  20.             this.Close();
  21.         }
  22.         private void QuanBu_Click(object sender, EventArgs e)
  23.         {
  24.             FrmGeShouList FrmGeShouList1 = new FrmGeShouList();
  25.             FrmGeShouList1.ds = KTVData.KTVDB.SelectGeShou("", "");
  26.             FrmGeShouList1.Show();
  27.             this.Close();
  28.         }
  29.         private void XinBie_Click(object sender, EventArgs e)
  30.         {
  31.             FrmSex FrmSex1 = new FrmSex();
  32.             FrmSex1.Show();
  33.             this.Close();
  34.         }
  35.     }
  36. }