mediaelement位置设置问题
我使用这一行来设置我的媒体元素位置
OurElement.Position = TimeSpan.FromSeconds(NowPlayingParameters.Position);
,但它保持 00:00 为什么它不能跳转到位置值
i use this line to set my media element position
OurElement.Position = TimeSpan.FromSeconds(NowPlayingParameters.Position);
but it stays 00:00 why can't it jump to the position value
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在尝试设置
Position
之前,您应该等待MediaOpened
事件You should wait for the
MediaOpened
event before attempting to set thePosition