(一). 说明
一个播放音乐的类,直接COPY就可以用了.
可用于自己编写的游戏等一些需要播放音乐的地方. 只要给它正在的文件名
就OK了. 具体看下面代码.
(二).示例图片
(三).代码
using System;
//using System.Drawing;
using System.Collections;
using System.ComponentModel;
//using System.Windows.Forms;
//using System.Data;
using System.Runtime.InteropServices;
namespace 智能象棋游戏
{
/// <summary>
/// 用于播放音乐
/// </summary>
internal class Helpers
{
[Flags]
public enum PlaySoundFlags : int
{
SND_SYNC = 0x0000, /* play synchronously (default) */ //同步
SND_ASYNC = 0x0001, /* play asynchronously */ //异步
SND_NODEFAULT = 0x0002, /* silence (!default) if sound not found */