我使用的MediaElement這個來源:Silverlight的MediaElement的來源出版物
http://origin-community.ministryofsound.com/asx/radio/mosRadio.asx
當我使用Windows Media Player打開它,我得到一個標題:「教育部聲廣播電臺」,但我看到MediaElement屬性並找不到此標題。
有人可以幫我嗎?
謝謝
我使用的MediaElement這個來源:Silverlight的MediaElement的來源出版物
http://origin-community.ministryofsound.com/asx/radio/mosRadio.asx
當我使用Windows Media Player打開它,我得到一個標題:「教育部聲廣播電臺」,但我看到MediaElement屬性並找不到此標題。
有人可以幫我嗎?
謝謝
它存儲在MediaElemet的屬性,這在MediaOpened事件之後可用。查看提供的源的屬性,密鑰名稱爲「TITLE」。
void MyMediaElement_MediaOpened(object sender, RoutedEventArgs e)
{
tb1.Text = (sender as MediaElement).Attributes["TITLE"];
}
啊......我一直在尋找的對象內部的開放活動開始前...謝謝你傑夫! – 2009-08-29 21:41:27
它不適用於這樣的來源:mms://195.245.168.21/antena3 你知道可能是什麼問題嗎?屬性是空的。 在此先感謝。 – 2009-08-31 13:38:56
大媒體來源BTW :-) – 2009-08-29 21:29:44
相當不錯源:-) – 2009-08-29 21:41:58