如何在Windows Phone 7中的medialement中播放.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
这是 medialement
的xaml代码<MediaElement Height="120" HorizontalAlignment="Left" Margin="70,94,0,0" Name="MediaElement1" VerticalAlignment="Top" Width="160"/>
我尝试使用 try and catch
,但我没有遇到任何错误,为什么我无法在我的应用程序中播放该.mp3文件?