取消在WPF中关闭的窗口

时间:2011-01-06 11:38:33

标签: wpf

我知道这个问题与this one非常相似,但我认为以下代码会取消关机请求,但事实并非如此?任何人都可以解释原因吗?

namespace WpfApplication1
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
            this.Closing += new System.ComponentModel.CancelEventHandler(MainWindow_Closing);            

        }

        private void button1_Click(object sender, RoutedEventArgs e)
        {
            Application.Current.Shutdown();
        }

        void MainWindow_Closing(object sender, System.ComponentModel.CancelEventArgs e)
        {
            e.Cancel = true;
        }        
    }
}

1 个答案:

答案 0 :(得分:25)

来自MSDN

  

重要提示:调用关机时   该应用程序将关闭   无论是否结束   任何打开的窗口都会被取消。