C#循环播放音乐

实现单曲循环不使用控件... 实现单曲循环
不使用控件
展开
 我来答
lcg1986
推荐于2016-12-01 · TA获得超过3374个赞
知道大有可为答主
回答量:1858
采纳率:90%
帮助的人:1621万
展开全部
2种方法:

[DllImport("winmm.dll")]
private static extern bool PlaySound(string pszSound, int hmod, int fdwSound);
public const int SND_FILENAME = 0x00020000;
public const int SND_ASYNC = 0x0001;
public const int SND_LOOP = 8;

/// <summary>
/// 调用API播放声音
/// </summary>
/// <param name="name">声音文件名</param>
public static void PlayMusic(string name)
{
try
{
PlaySound(name, 0, SND_ASYNC | SND_FILENAME | SND_LOOP);
}
catch (Exception err)
{
MessageBox.Show(err.Message);
}
}

方法2:

[DllImport("winmm.dll")]
public extern static int mciSendString(string command,IntPtr responseBuffer, int bufferLength, int nothing);

WinAPI.mciSendString("open D:\\GM01.mid alias song ", new IntPtr(0), 0, 0);
WinAPI.mciSendString("play song", new IntPtr(0), 0, 0);
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式