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

行业应用

开发平台:

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 FrmClass : Form
  11.     {
  12.         public FrmClass()
  13.         {
  14.             InitializeComponent();
  15.         }
  16.         private void FrmClass_Load(object sender, EventArgs e)
  17.         {
  18.         }
  19.         public void showXuanGe(string ClassName)
  20.         {
  21.             DataSet ds = new DataSet();
  22.             ds = KTVData.KTVDB.SelectClassName(ClassName);
  23.             if (ds.Tables[0].Rows.Count < 1)
  24.             {
  25.                 MessageBox.Show("此类别暂无任何歌曲,请重新选择!", "系统提示", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
  26.                 return;
  27.             }
  28.             FrmXuanGe FrmXuanGe1 = new FrmXuanGe();
  29.             FrmXuanGe1.ds = ds;
  30.             FrmXuanGe1.Show();
  31.             this.Close();
  32.         }
  33.         private void pictureBox1_Click(object sender, EventArgs e)
  34.         {
  35.             showXuanGe("流行歌曲");
  36.         }
  37.         private void pictureBox2_Click(object sender, EventArgs e)
  38.         {
  39.             showXuanGe("经典老歌");
  40.         }
  41.         private void pictureBox3_Click(object sender, EventArgs e)
  42.         {
  43.             showXuanGe("古典音乐");
  44.         }
  45.         private void pictureBox4_Click(object sender, EventArgs e)
  46.         {
  47.             showXuanGe("生日歌曲");
  48.         }
  49.         private void pictureBox5_Click(object sender, EventArgs e)
  50.         {
  51.             showXuanGe("影视金曲");
  52.         }
  53.         private void pictureBox6_Click(object sender, EventArgs e)
  54.         {
  55.             showXuanGe("儿童歌曲");
  56.         }
  57.         private void pictureBox7_Click(object sender, EventArgs e)
  58.         {
  59.             showXuanGe("世界名曲");
  60.         }
  61.         private void pictureBox8_Click(object sender, EventArgs e)
  62.         {
  63.             showXuanGe("其他歌曲");
  64.         }
  65.     }
  66. }