WPF中MsgBox的弹出会中断路由事件的传递

栏目: ASP.NET · 发布时间: 5年前

内容简介:在WPF的Tunnel(Preview)路由事件中用MessageBox.Show弹出对话框后,会中断后续的Bubbling事件。根据MSFT的解释是,MessageBox弹出时获取到了焦点,导致路由事件的链断了。相关说明:Hi Fortnum,

在WPF的Tunnel(Preview)路由事件中用MessageBox.Show弹出对话框后,会中断后续的Bubbling事件。根据MSFT的解释是,MessageBox弹出时获取到了焦点,导致路由事件的链断了。

相关说明: MessageBox prevent RoutedEvent routing

Hi Fortnum,

I performed a test based on your sample code and did see the problem on my side.

The reason is that the messagbox takes the focus from the window when it pops up. Thus, the UI elements in the routed event chain won't receive the routed event any more.

As you can see, this behavior is by design. We can only show a modeless window from within the preview mouse related routed event handler. Unfortunately, it doesnt' fit in your case because you must show a modal window to ask the user whether to bubble the routed event chain. My suggestion is to show the messagebox from within the MouseLeftButtonDown event handler of the InnerButton. If the user chooses No, exit the event handler directly. For example:

void InnerButton_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)

{

if (MessageBox.Show("Continue the event processing?","Confirmation",MessageBoxButton.YesNo) == MessageBoxResult.Yes)

{

// do some work here

....

}

}

Hope this helps.

If you have any question, please feel free to let me know.

Sincerely,

Linda Liu


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Java Web整合开发王者归来

Java Web整合开发王者归来

刘京华 / 清华大学 / 2010-1 / 99.80元

《Java Web整合开发王者归来(JSP+Servlet+Struts+Hibernate+Spring)》全面介绍了Java Web开发中的各种相关技术及知识。全书分为9篇,内容层次清晰,难度循序渐进。第1篇为入门篇,内容包括Java Web开发概述等;第2篇为基础篇,内容包括Servlet技术、JSP技术、会话跟踪、过滤器Filter、监听器Listener等;第3篇为高级篇,内容包括JST......一起来看看 《Java Web整合开发王者归来》 这本书的介绍吧!

JSON 在线解析
JSON 在线解析

在线 JSON 格式化工具

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

MD5 加密
MD5 加密

MD5 加密工具