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


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

查看所有标签

猜你喜欢:

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

Web应用测试

Web应用测试

纽恩 (Hung Q.Nguyen) / 冯学民 / 第1版 (2003年4月1日) / 2003-4 / 29.0

一起来看看 《Web应用测试》 这本书的介绍吧!

RGB转16进制工具
RGB转16进制工具

RGB HEX 互转工具

随机密码生成器
随机密码生成器

多种字符组合密码

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具