最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
用Api函数播放wav文件
时间:2022-07-02 11:41:29 编辑:袖梨 来源:一聚教程网
这个是一段例程,希望能对你有帮助
[DllImport("Winmm")]
public static extern bool PlaySound(string pszSound, IntPtr hmod, UInt32
fdwSound);
private const Int32 SND_ASYNC = 1;
private const Int32 SND_LOOP = 8;
private const Int32 SND_FILENAME = 131072;
private void PlayScreenSaver()
{
PlaySound ("BackGround.WAV", IntPtr.Zero, SND_ASYNC | SND_FILENAME |
SND_LOOP);
……
}
private void StopScreenSaver()
{
PlaySound (null, IntPtr.Zero, SND_ASYNC);
……
}
更详细的信息可以到这里看看
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/multimed/mmfunc_9uxw.asp
[DllImport("Winmm")]
public static extern bool PlaySound(string pszSound, IntPtr hmod, UInt32
fdwSound);
private const Int32 SND_ASYNC = 1;
private const Int32 SND_LOOP = 8;
private const Int32 SND_FILENAME = 131072;
private void PlayScreenSaver()
{
PlaySound ("BackGround.WAV", IntPtr.Zero, SND_ASYNC | SND_FILENAME |
SND_LOOP);
……
}
private void StopScreenSaver()
{
PlaySound (null, IntPtr.Zero, SND_ASYNC);
……
}
更详细的信息可以到这里看看
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/multimed/mmfunc_9uxw.asp
相关文章
- 《四季城与多米糯》橘子汽水服装分享 01-13
- 《大明侠客令》缉盗行攻略 01-13
- 《四季城与多米糯》甜蕉服装分享 01-13
- 《火影忍者手游》九周年活动内容一览 01-13
- 《Archeland》艾莉卡技能介绍 01-13
- 《时光大爆炸》游戏音效设置方法 01-13