Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有很多窗口的应用程序,我只是好奇(在 WPF 中)有没有像 ASP.NET 中的 global.asax 这样的东西?例如,我只想在有人使用 alt-f4 关闭应用程序后清理一些数据。
感谢您的回答!
WPF 中的大致等价物Global.asax是app.xaml/ app.xaml.cs。您可以覆盖那里的方法来处理启动和关闭。
Global.asax
app.xaml
app.xaml.cs
例如,在您的 中app.xaml.cs,您可以添加以下内容:
protected override void OnExit(ExitEventArgs e) { base.OnExit(e); // custom exit code here }