WPF 应用程序初始化和完成
我正准备编写一个使用 ICE(互联网通信引擎)中间件的 WPF 客户端应用程序。 ICE 需要正确的初始化和终止。所有示例都展示了如何在通常的控制台应用程序中完成此操作 - 这很容易,因为您只需要 try-finally 块并在其中执行一些操作。
那么 WPF 呢?我如何确保无论发生什么情况都会调用某些代码来完成应用程序?
I am preparing to write a WPF client application that uses ICE (Internet Communication Engine) middleware. ICE requires proper initialization and finalization. All the examples show how to accomplish this in a usual console application - which is easy because you only need try-finally block and do some stuff in it.
What about WPF? How can I be sure that some code will be called no-matter-what happens to finalize the app?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 Application.Exit 事件
另请参阅如何检测应用程序何时终止?
Have a look at the Application.Exit event
Also, see How to detect when application terminates?