我一直试图在我当前的应用程序中包含 Song.FromURI() 方法,但总是会出现“CrossThreadMessagingException”。
我已经开始了一个新项目,并从字面上复制并粘贴了 MSDN 示例 ( http://msdn.microsoft.com/en-us/library/ff634558.aspx ) 中的代码,但仍然出现异常。它似乎是沉默的(没有终止),但阻止访问任何成员。
谢谢。
Uri uriStreaming = new Uri("http://www.archive.org/download/gd1977-05-08.shure57.stevenson.29303.flac16/gd1977-05-08d02t06_vbr.mp3");
Song song = Song.FromUri("StreamingUri", uriStreaming);
'song.Album' threw an exception of type 'Microsoft.VisualStudio.Debugger.Runtime.CrossThreadMessagingException'
'song.Artist' threw an exception of type 'Microsoft.VisualStudio.Debugger.Runtime.CrossThreadMessagingException'
'song.Genre' threw an exception of type 'Microsoft.VisualStudio.Debugger.Runtime.CrossThreadMessagingException'
'song.PlayCount' threw an exception of type 'Microsoft.VisualStudio.Debugger.Runtime.CrossThreadMessagingException'