码迷,mamicode.com
首页 > Windows程序 > 详细

WPF 窗体拖转时不触发MouseLeftButtonUpEvent

时间:2014-07-09 00:03:45      阅读:263      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   div   new   re   

解决方案:手动添加Handler,因为e.Handled这个属性是用在路由事件中的,当某个控件得到一个RoutedEvent,就会检测Handled是否为true,为true则忽略该事件。

//手动注册 
this.AddHandler(MouseLeftButtonUpEvent, new MouseButtonEventHandler(UIElement_OnMouseLeftButtonUp), true);

 

 

WPF 窗体拖转时不触发MouseLeftButtonUpEvent,布布扣,bubuko.com

WPF 窗体拖转时不触发MouseLeftButtonUpEvent

标签:style   blog   color   div   new   re   

原文地址:http://www.cnblogs.com/gaobing/p/3830266.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!