MediaElement 不播放 WP7 流中的音频
string url = re["response"][0]["url"].ToString();
MediaElement mm = new MediaElement();
mm.Source = new Uri(url,UriKind.RelativeOrAbsolute);
mm.AutoPlay = true;
mm.Volume = 0.7;
mm.Play();
但没有任何变化,音频无法启动。我该如何解决这个问题?
string url = re["response"][0]["url"].ToString();
MediaElement mm = new MediaElement();
mm.Source = new Uri(url,UriKind.RelativeOrAbsolute);
mm.AutoPlay = true;
mm.Volume = 0.7;
mm.Play();
But no changes, the adudio not starts.How I can resolve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要在播放之前将 MediaElement 添加到 VisualTree,因为您是在代码隐藏中创建它的。例如,假设您有
LayoutRoot
并且您的url
正确,那么这应该可以工作。You need to add your MediaElement to your VisualTree before playing it, since you're creating it in the codebehind. For example, assuming you have
LayoutRoot
and that yoururl
is correct, this should work.