C# 调用系统winmm.dll 播放音乐wav mp3

Posted 海乐学习-专业呼叫中心解决方案

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# 调用系统winmm.dll 播放音乐wav mp3相关的知识,希望对你有一定的参考价值。

using System.Runtime.InteropServices;//放wav

public partial class frmMain : Form
 {
    系统放 播放音乐  wav mp3
    [DllImport("winmm.dll")]
    public static extern bool PlaySound(string pszSound, int hmod, int fdwSound);//播放windows音乐,重载

     public frmMain()
     {
            InitializeComponent();
      }

        //进入 系统播放音乐  
        private void m_SystemPlayWav(string strPlayFile)
        {
            try
            {
                if (strPlayFile.Trim() == "")
                { return; }//为空不放

                string strPath = AppDomain.CurrentDomain.SetupInformation.ApplicationBase;
                strPath = strPath + strPlayFile;

                int SND_FILENAME = 0x00020000;
                int SND_ASYNC = 0x0001;
                PlaySound(strPath, 0, SND_ASYNC | SND_FILENAME);//播放音乐
            }
            catch (Exception ex)
            {
                //myClass.clsLogHelper.m_CreateErrorLogTxt("m_SystemPlayWav win系统放wav文件", strPlayFile, ex.Message.ToString());
            }
        }
        private void m_SystemStopPlayWav()
        {
            try
            {
                PlaySound(null, 0, 0x40 | 0x04 | 0x02);
            }
            catch (Exception ex)
            {
                //myClass.clsLogHelper.m_CreateErrorLogTxt("m_SystemStopPlayWav win停止放wav文件", "", ex.Message.ToString());
            }
        }

}

 

以上是关于C# 调用系统winmm.dll 播放音乐wav mp3的主要内容,如果未能解决你的问题,请参考以下文章

C#中如何控制播放音乐的声音大小

带有 winmm3.dll 的音频播放/倒带功能

在 C# 中播放音频文件

C#播放背景音乐常用的四种方式

Windows Phone 开发:使用 winmm.dll 播放内部 mp3 文件

C#调用mciSendString播放MP3文件,大家看看这样有啥不对的,我老是播放不出来