Silverlight MediaElement源标题

时间:2009-08-29 16:42:22

标签: silverlight mediaelement

我正在使用带有此来源的MediaElement:

http://origin-community.ministryofsound.com/asx/radio/mosRadio.asx

当我使用Windows Media Player打开它时,我得到一个标题:“声音广播部”,但我看过MediaElement属性,但找不到这个标题。

有人可以帮我吗?

谢谢

1 个答案:

答案 0 :(得分:1)

它存储在MediaElemet的属性中,这些属性在MediaOpened事件中可用,之后。查看所提供源的属性,键名为“TITLE”。

    void MyMediaElement_MediaOpened(object sender, RoutedEventArgs e)
    {
        tb1.Text = (sender as MediaElement).Attributes["TITLE"];
    }