博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[WPF疑难]Hide me! not close
阅读量:5757 次
发布时间:2019-06-18

本文共 2090 字,大约阅读时间需要 6 分钟。

原文

[WPF疑难]Hide me! not close

                              周银辉
有朋友遇到这样的一个问题,在WPF中,当Closing一个窗体时,将e.Cancel=true,然后再调用Hide()方法,以便隐藏窗口而不是关 闭,但报异常了:“当Window Closing时不能设置Visibility,或调用Show(),Close(),Hide()方法”。OK,本随笔将帮你解决该问题。
问题的关键在于不能再Closing方法中调用Close等,那么只要我们知道用户有意图关闭窗体时,仅仅再Closing方法中取消关闭,然后在 Closing紧接着的某个方法中调用Hide就OK了。为了体现这个“紧接着的某个方法”,让我联想到方法排队,比如多个线程中的方法使用同一个对象 时,这些方法将被排队,否则异常。那么就用Invoke来帮我们实现这个排队就OK了。
假设我们的Window类型的win2时一个需要隐藏的窗口,企图关闭该窗体时其会被隐藏,点击主窗口上的btnShowWin2按钮时窗体会再次被显示。
我们实现一个Delegate,其代理的方法将异常窗体:

delegate
 
void
 WillHide();
//
private
 WillHide willHide;
//
this
.willHide 
=
 
new
 WillHide(
this
.HideWin2);
//
private
 
void
 HideWin2()
{
     
this.win2.Hide();
}

当Closing时我们这样:

        
void
 win2_Closing(
object
 sender, CancelEventArgs e)
        
{
            e.Cancel 
= true;
            Dispatcher.BeginInvoke(System.Windows.Threading.DispatcherPriority.Normal, 
this.willHide);
        }

Everything is OK!

整体的代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.ComponentModel;
namespace ClosingDemo
{
    
/// <summary>
    
/// Interaction logic for Window1.xaml
    
/// </summary>
    public partial class Window1 : Window
    
{
        
delegate void WillHide();
        
private Window2 win2 = new Window2();
        
private WillHide willHide;
        
public Window1()
        
{
            InitializeComponent();
            Test();
        }
        
private void HideWin2()
        
{
            
this.win2.Hide();
        }
        
private void Test()
        
{
            App.Current.MainWindow 
= this;
            App.Current.ShutdownMode 
= ShutdownMode.OnMainWindowClose;
            
this.willHide = new WillHide(this.HideWin2);
            
this.win2.Closing += new CancelEventHandler(win2_Closing);
            
this.btnShowWin2.Click += new RoutedEventHandler(btnShowWin2_Click);
           
            
this.win2.Show();
        }
        
void btnShowWin2_Click(object sender, RoutedEventArgs e)
        
{
            
this.win2.Show();
        }
        
void win2_Closing(object sender, CancelEventArgs e)
        
{
            e.Cancel 
= true;
            Dispatcher.BeginInvoke(System.Windows.Threading.DispatcherPriority.Normal, 
this.willHide);
        }
        
       
    }
}
你可能感兴趣的文章
变量声明提升1
查看>>
轻量级的Java 开发框架 Spring
查看>>
JS之路——浏览器window对象
查看>>
Chrome教程(二)使用ChromeDevTools命令菜单运行命令
查看>>
数据结构及算法基础--快速排序(Quick Sort)(二)优化问题
查看>>
你对position的了解到底有多少?
查看>>
随笔2013/2/19
查看>>
Windows Phone的Silverlight Toolkit 安装及其使用
查看>>
DBS:同学录
查看>>
Mysql备份系列(1)--备份方案总结性梳理
查看>>
[CareerCup] 1.6 Rotate Image 翻转图像
查看>>
jQuery中$.fn的用法示例介绍
查看>>
Python中的画图初体验
查看>>
Java程序员的日常 —— 响应式导航Demo
查看>>
objective-c内存管理基础
查看>>
sap关于价值串的说法(转载)
查看>>
Migration to S/4HANA
查看>>
sed 对目录进行操作
查看>>
什么是代码
查看>>
移动端开发单位——rem,动态使用
查看>>