类似于WPF中的global.asax

时间:2012-10-02 12:12:59

标签: wpf global-asax

我的应用程序有很多窗口,我只是好奇(在WPF中)类似于ASP.NET中的global.asax?我只是想在用alt-f4关闭应用程序之后清理一些数据。

感谢您的回答!

1 个答案:

答案 0 :(得分:4)

WPF中Global.asax的粗略等效值为app.xaml / app.xaml.cs。您可以覆盖那里的方法来处理启动和关闭。

例如,在app.xaml.cs中,您可以添加以下内容:

    protected override void OnExit(ExitEventArgs e)
    {
        base.OnExit(e);

        // custom exit code here
    }