如何在 Windows Phone 7 中播放 .mp3 文件?我搜索了一些解决方案,但没有一个对我有用..
这是我的代码
Try
MediaElement1.Source = New Uri("/The Smashing Pumpkins - Bullet with Butterfly Wings.mp3", UriKind.Relative)
MediaElement1.Play()
Catch ex As Exception
Console.WriteLine(ex)
End Try
这是中介的xaml代码
<MediaElement Height="120" HorizontalAlignment="Left" Margin="70,94,0,0" Name="MediaElement1" VerticalAlignment="Top" Width="160"/>
我尝试使用try and catch
,但我没有遇到任何错误,我无法在我的应用程序中播放那个 .mp3 文件的原因是什么?