鼠标移上事件
System.Diagnostics.Process.start("D:a.wav");在一个button上调用鼠标移上事件然后触发上面那句
我不想让它弹出播放器,怎,么做哦 (C#)
2007-11-19 10:46
用PlaySound()函数
e.g:
[DllImport("winmm.dll")]
public static extern bool PlaySound(String Filename, int Mod, int Flags);
PlaySound("123.wav", 0, 9);

2007-11-19 11:33

2007-11-19 13:19

2007-11-19 13:29