private void Form1_Load(object sender, EventArgs e)
{
try
{
//System.Media.SoundPlayer MyPlayer = new System.Media.SoundPlayer();
//MyPlayer.SoundLocation = ".wav格式的歌曲";
//MyPlayer.Load();
//MyPlayer.PlayLooping();
Microsoft.VisualBasic.Devices.Computer My = new Microsoft.VisualBasic.Devices.Computer();
My.Audio.Play("8.wav", Microsoft.VisualBasic.AudioPlayMode.BackgroundLoop);
}
catch(Exception MyEx)
{
MessageBox.Show(MyEx.Message, "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}