我正在使用PlaySound开发一个简单的应用程序来播放WAV文件,使用以下代码:
#region DllImport
private enum Flags
{
SND_SYNC = 0x0000,
SND_ASYNC = 0x0001,
SND_NODEFAULT = 0x0002,
SND_MEMORY = 0x0004,
SND_LOOP = 0x0008,
SND_NOSTOP = 0x0010,
SND_NOWAIT = 0x00002000,
SND_ALIAS = 0x00010000,
SND_ALIAS_ID = 0x00110000,
SND_FILENAME = 0x00020000,
SND_RESOURCE = 0x00040004
}
[DllImport("CoreDll.DLL", EntryPoint = "PlaySound", SetLastError = true)]
private extern static int MobilePlaySound(string szSound, IntPtr hMod, int flags);
public void PlaySound(string fileName)
{
MobilePlaySound(fileName, IntPtr.Zero, (int)Flags.SND_SYNC);
}
#endregion
public Form1()
{
InitializeComponent();
openFileDialog1.ShowDialog();
PlaySound(openFileDialog1.FileName);
}
但是当我执行它并选择一个WAV文件(有2分钟的声音)时,我没有听到任何声音。
我需要做什么?感谢。
答案 0 :(得分:1)
你应该使用 SND_FILENAME
标志而不是 SND_SYNC
,因为你指定了一个文件,试试看,看看你是否有更好的结果...
答案 1 :(得分:1)
正如curtisk指出的那样,您应该尝试使用SND_FILENAME
让API知道您传入了文件名。另外,请注意PlaySound方法有一个返回值,值得检查你要回来的东西 - 根据MSDN documentation,如果成功则返回0,否则返回非零。