Silverlight MediaElement 源标题

发布于 2024-08-03 06:03:39 字数 356 浏览 8 评论 0原文

我正在使用具有以下来源的 MediaElement:

http://origin-community。 Ministryofsound.com/asx/radio/mosRadio.asx

当我用 Windows Media Player 打开它时,我得到一个标题:“Ministry of Sound Radio”,但我已经看到了 MediaElement 属性,但找不到这个标题。

有人能帮我解决这个问题吗?

谢谢

I'm using a MediaElement with this source:

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

When I open it with Windows Media Player I get a title: "Ministry of Sound Radio", but I've seen the MediaElement properties and can't find this title.

Can anybody help me with this?

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

躲猫猫 2024-08-10 06:03:39

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

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

It's stored in the Attributes of the MediaElemet, which are available in the MediaOpened event and after that. Looking at the attributes for your provided source, the key name is "TITLE".

    void MyMediaElement_MediaOpened(object sender, RoutedEventArgs e)
    {
        tb1.Text = (sender as MediaElement).Attributes["TITLE"];
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文