WPF媒体元素
我有一个 MediaElement,但是当 MediaElement 的属性“position”发生变化时如何调用函数?
位置不是 DependencyProperty。
I have a MediaElement, but how can I call a function when the property "position" of MediaElement changes?
Position is not a DependencyProperty.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 DispatchTimer。本文提供了有关如何实现此功能的一些很好的见解。 MediaElement 及更多使用 WPF。
这是我从我正在开发的项目中获取的一些示例代码。它使用滑块控件显示视频的位置,并允许用户更改位置。
我也是个新手,所以可能有些地方是错误的(请随时在评论部分评论问题:)。
You can use a DispatchTimer. This article provides some good insight on how to get this working. MediaElement and More with WPF.
Here is some sample code that I took from a project I'm working on. It shows the position of the video using a slider control and allows the user to change the position.
I'm a bit of a newbie too, so it is possible that some of it is wrong (feel free to comment on problems in the comments section :).