WPF 延迟触发 RoutedEvents
我正在收集为 MouseRightDownButton 触发的所有路由事件并将它们存储在队列中。 我有 Sender 对象以及 RoutedEventArgs。
现在,我需要一个接一个地触发这些事件,并稍微停顿一下。 我还想在触发每个事件时更新 UI。
这需要 Timer 类吗?
I am gathering all the routed events fired for the MouseRightDownButton and storing them in a Queue. I have the Sender object as well as the RoutedEventArgs.
Now, I need to fire those events one by one and with a little pause. I also want to update the UI as I fire each event.
Do this require the Timer class?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,它需要某种计时器。 我会检查 DispatcherTimer 类,如果您需要更新 UI 上的对象。
Yes it will require a timer of some sort. I would check out the DispatcherTimer class if you need to update objects on the UI.