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

WPF判断当前窗体是否为模态

时间:2015-06-02 19:47:19      阅读:266      评论:0      收藏:0      [点我收藏+]

标签:

WPF判断当前窗体是否为模态
 
1、使用System.Windows.Interop.ComponentDispatcher.IsThreadModal来判断
注意事项:
        1、Works not immediately after ShowModal is called. Some events still cannot tell if modal
        2、This doesn‘t work if a modal dialog is showing this modeless dialog!
2、使用反射
eg:新建一个拓展方法
1 public static bool IsModal(this Window window)
2 {
3     return(bool)typeof(Window).GetField("_showingAsDialog", BindingFlags.Instance | BindingFlags.NonPublic).GetValue(window);
4 }
 
改进为:
1 public static bool IsModal(this Window window)
2 {
3     var filedInfo=typeof(Window).GetField("_showingAsDialog", BindingFlags.Instance | BindingFlags.NonPublic);
4 
5     return filedInfo!=null&&(bool)filedInfo.GetValue(window);
6 }

 

 
推荐第二种

WPF判断当前窗体是否为模态

标签:

原文地址:http://www.cnblogs.com/6112562a/p/4547092.html

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