我正在制作一个.wav player应用程序,其中我有一个按钮播放加载的.wav
因此,如果声音播放"暂停"按钮,并且将显示"播放"按钮时。
当前使用以下方式:
using (SoundPlayer player = new SoundPlayer(label1.Text))
{
pictureBox1.Image = Form1.Properties.Resources.play_button;
try
{
player.Play();
}
catch (FileNotFoundException)
{
MessageBox.Show("File has been moved." + "n" + "Please relocate it now!");
}
}
有办法做到吗?如果这是如何做到的?如果可能的话?
您可能需要Sound Player以外的其他东西...我在MSDN上看不到任何东西会让您暂停或捕获Onpause事件...尝试使用MediaPlayer类?