WinCE平台的C#程序中调用MessageBeep发出一些系统自带的声音,而不用使用playsound

时间:2014-06-08 04:48:55   收藏:0   阅读:434



        [DllImport("coredll.dll", EntryPoint = "MessageBeep")]
        public static extern bool MessageBeep(int iType);


            int i = 0x00000040;
            ClassPublicFunction.MessageBeep(i);




声音的类型

public enum BeepType

{

  SimpleBeep = -1,

  IconAsterisk = 0x00000040,

  IconExclamation = 0x00000030,

  IconHand = 0x00000010,

  IconQuestion = 0x00000020,

  Ok = 0x00000000,

}




WinCE平台的C#程序中调用MessageBeep发出一些系统自带的声音,而不用使用playsound,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!