在Silverlight 4中处理ToggleButton的MouseDownEvent
我试图通过向 RootVisual 添加一个钩子来处理此控件的 MouseDownEvent:
Application.Current.RootVisual.AddHandler(MouseLeftButtonDownEvent,
(MouseButtonEventHandler)OnMouseLeftButtonEvent, true);
但即使我将最后一个参数设置为 true,它由于某种原因也不会触发。欢迎任何有关为什么会发生这种情况以及如何解决此问题的想法!
编辑:如果有任何区别,此切换位于弹出窗口中。
I'm trying to handle the MouseDownEvent for this control by adding a hook to RootVisual:
Application.Current.RootVisual.AddHandler(MouseLeftButtonDownEvent,
(MouseButtonEventHandler)OnMouseLeftButtonEvent, true);
But even though I set the last parameter to true, it doesn't trigger for some reason. Any ideas on why is this happening and how to fix this are welcome!
EDIT: this toggle is located in a popup window if it makes any difference.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论