Play an audio file in Windows 7 Phone

后端 未结 4 1753
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-25 14:32

I am working on Windows 7 based application development in Silverlight. I have not been able to find a way to play a an audio file in windows 7 phone programmatically. I hav

4条回答
  •  执念已碎
    2020-12-25 15:14

    You can place a MediaElement in your XAML view:

    
    

    then in the code-behind:

    sound.Play();
    

    Supported formats are MP3 and WMA.

提交回复
热议问题