3个回答
展开全部
添加命名空间引用:
using System.Runtime.InteropServices;
然后声明:
[DllImport("winmm.dll")]
public static extern bool PlaySound(String Filename, int Mod, int Flags);
播放:
PlaySound(@"e:\Music\login.wav", 0, 1); //把1替换成9,可连续播放
或者
PlaySound(System.Windows.Forms.Application.StartupPath+@"\Music\login.wav", 0, 1);
PlaySound(@"..\..\Music\login.wav", 0, 1);
using System.Runtime.InteropServices;
然后声明:
[DllImport("winmm.dll")]
public static extern bool PlaySound(String Filename, int Mod, int Flags);
播放:
PlaySound(@"e:\Music\login.wav", 0, 1); //把1替换成9,可连续播放
或者
PlaySound(System.Windows.Forms.Application.StartupPath+@"\Music\login.wav", 0, 1);
PlaySound(@"..\..\Music\login.wav", 0, 1);
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
播放声音?
如果只要求用WAV的画 楼上几位都是正解
如果要求还有别的
那可以调用COM组建 用media控件
如果只要求用WAV的画 楼上几位都是正解
如果要求还有别的
那可以调用COM组建 用media控件
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
[DllImport("winmm.dll")]
private static extern long sndPlaySound(string lpszSoundName,long uFlags);
public static void PlaySound(string fileName)
{
sndPlaySound(fileName,1);
}
private static extern long sndPlaySound(string lpszSoundName,long uFlags);
public static void PlaySound(string fileName)
{
sndPlaySound(fileName,1);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询