2013-03-13 295 views
2

我一直試圖在我當前的應用程序中包含Song.FromURI()方法,但總是出現「CrossThreadMessagingException」。Song.fromURI()拋出異常?

我已經開始一個新項目,並且從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' 

回答

1

肖恩從XNA團隊哈格里夫斯張貼這在MSDN上了一段時間後,我認爲是相對於你在這裏:

許多媒體播放器的屬性不能被評估時,你 程序在調試器中暫停。無法運行涉及與媒體播放器 線程通信的複雜 屬性獲取器,因爲該線程在調試器中被暫停而您的程序被中斷 ,因此無法運行代碼,因此通常會運行 報告的值屬性。

這只是一個調試器工件,如果您正常運行您的程序或在調試器中遍歷它,應該不會引起任何問題。它 隻影響調試器屬性顯示,而不影響代碼的實際執行 。