本文实例总结了C#播放背景音乐的方法。分享给大家供大家参考。具体分析如下:
最经在写winform程序,其中有用到播放背景音乐
特此收集了一些网上的教程:
1、调用非托管的dll
using System.Runtime.InteropServices;
//DllImport命名空间的引用
class test //提示音
{
[DllImport(winmm.dll)]
public static extern bool PlaySound(String Filename,int Mod,int Flags);
public void Main()
{
PlaySound