程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> 一個優先級聲音播放類

一個優先級聲音播放類

編輯:C#入門知識

 1 class SPlayer
 2     {
 3         private static SoundPriorities _lastPriority = SoundPriorities.Low;
 4 
 5         public static bool Play(string wavPath, SoundPriorities priority)
 6         {
 7             if (string.IsNullOrEmpty(wavPath)) return false;
 8             if (!File.Exists(wavPath)) return false;
 9             if (!wavPath.EndsWith(".wav", StringComparison.OrdinalIgnoreCase)) return false;
10 
11             if (priority >= _lastPriority)
12             {
13                 Stop();
14                 _lastPriority = priority;
15                 return NativeMethods.PlaySoundA(wavPath, new IntPtr(), (int)(PlaySoundFlags.SND_ASYNC | PlaySoundFlags.SND_LOOP));
16             }
17 
18             return false;
19         }
20 
21         public static void Stop()
22         {
23             if (NativeMethods.PlaySoundA(null, new IntPtr(), 0))
24                 _lastPriority = SoundPriorities.Low;
25         }
26     }
27 
28     [Flags]
29     enum PlaySoundFlags : int
30     {
31 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved