1

我有一个带有 MainWindow 的简单 WPF 应用程序。在后面的代码中设置一个卸载事件。将 设置MainWindow为启动 uri。关闭窗口时不会触发卸载。创建第二个窗口 -NotMainWindow单击一个按钮。

在按钮单击事件中,调用 MainWindow。MainWindow触发关闭和卸载。为什么行为上的差异?我想要得到的是,我如何每次都获得某种卸载事件?

<Window x:Class="WpfApplication2.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="350" Width="525" Unloaded="Main_Unloaded">
<Grid>

</Grid>
</Window>

    private void Main_Unloaded(object sender, RoutedEventArgs e)
    {

    }

<Window x:Class="WpfApplication2.NotMainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="NotMainWindow" Height="300" Width="300">
<Grid>
    <Button Content="Show Main" Height="25" Margin="10" Width="70" Click="Button_Click" />
</Grid>
</Window>


private void Button_Click(object sender, RoutedEventArgs e)
    {
        MainWindow win = new MainWindow();
        win.Show();
    }

<Application x:Class="WpfApplication2.App"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         StartupUri="NotMainWindow.xaml">
<Application.Resources>

</Application.Resources>
</Application>
4

1 回答 1

3

根据您的评论,我了解您正在谈论的场景。这是一个已知问题,在关闭应用程序(例如关闭最后一个窗口)时不会调用 unloaded。

如果您只想知道窗口何时关闭,请使用以下Closing事件:

public MainWindow()
{
    this.Closing += new CancelEventHandler(MainWindow_Closing);
    InitializeComponent();
}


void MainWindow_Closing(object sender, CancelEventArgs e)
{
   // Closing logic here.
}

如果您想知道最后一个窗口何时关闭,例如您的应用程序正在关闭,您应该使用ShutdownStarted

public MainWindow()
{
    this.Dispatcher.ShutdownStarted += Dispatcher_ShutdownStarted;
    InitializeComponent();
}

private void Dispatcher_ShutdownStarted( object sender, EventArgs e )
{
   //do what you want to do on app shutdown
}
于 2013-01-02T10:12:33.323 回答