码迷,mamicode.com
首页 > Windows程序 > 详细

WinForm中播放声音

时间:2015-08-26 17:19:31      阅读:146      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!