首页 > Windows开发 > 详细

WinForm中播放声音

时间:2015-08-26 17:19:23      阅读:317      评论:0      收藏:0      [点我收藏+]
using System.Runtime.InteropServices;
[DllImport("winmm.dll")]
        public static extern bool PlaySound(string pszSound, int hmod, int fdwSound);
        public const int SND_FILENAME = 0x00020000;
        public const int SND_ASYNC = 0x0001;
 
PlaySound("login.wav", 0, SND_ASYNC | SND_FILENAME);

WinForm中播放声音

原文:http://www.cnblogs.com/ninestart/p/4760819.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!