2010-09-07 78 views
2

我将音频文件放在一个.resx文件中。我想在我的应用程序中播放音频。 然后如何从.resx文件和锄头获得音频路径来播放音频,当点击按钮 。可以举一个例子。如何在Windows Mobile 6.0应用程序中播放音频?

+0

什么类型的音频文件(WAV,MP3等)?使用什么语言? – ctacke 2011-05-17 18:31:01

回答

2

用于播放声音,你可以使用的P/Invoke

[DllImport("coredll.dll")] 
    public static extern int PlaySound(
     string szSound, 
     IntPtr hModule, 
     int flags); 


public enum PlaySoundFlags : int 
{ 
    SND_SYNC = 0x0,  // play synchronously (default) 
    SND_ASYNC = 0x1, // play asynchronously 
    SND_NODEFAULT = 0x2, // silence (!default) if sound not found 
    SND_MEMORY = 0x4,  // pszSound points to a memory file 
    SND_LOOP = 0x8,  // loop the sound until next sndPlaySound 
    SND_NOSTOP = 0x10,  // don't stop any currently playing sound 
    SND_NOWAIT = 0x2000, // don't wait if the driver is busy 
    SND_ALIAS = 0x10000, // name is a registry alias 
    SND_ALIAS_ID = 0x110000,// alias is a predefined ID 
    SND_FILENAME = 0x20000, // name is file name 
    SND_RESOURCE = 0x40004, // name is resource name or atom 
} 

为了发挥你可以使用这个声音。

PlaySound(@"notify.wav", IntPtr.Zero, 
(int) PlaySoundFlags.SND_FILENAME | PlaySoundFlags.SND_ASYNC); 
相关问题