拖动时如何检测作为 Silverlight 中的拖动源的 UIElement 上的 MouseLeave?
我有一个带有 MouseLeave
事件的 StackPanel
。我遇到了一个问题,当将元素从此堆栈面板拖动到其他外部元素时,此 StackPanel
不会发生 MouseLeave
事件。
如何在拖动时检测到 MouseLeave
事件?
谢谢。
I have a StackPanel
with MouseLeave
events. I have run into an issue where MouseLeave
events are not occurring for this StackPanel
when elements are being dragged from this stack panel to other outside elements.
How can I have the MouseLeave
event detected when Dragging?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看
DragLeave
事件是否完成您想要的操作:http://msdn.microsoft.com/en-us/library/system.windows.uielement.dragleave(VS.95).aspx
See if the
DragLeave
event accomplishes what you want:http://msdn.microsoft.com/en-us/library/system.windows.uielement.dragleave(VS.95).aspx