我有一个wpf应用程序,对于大多数用户来说都是完美的,但是,对于大约10%的用户,当我调用第一个异步函数时,应用程序会在启动后立即退出,这里是启动代码的片段
来自app.xaml.cs的:
try{
JSON.parse(body);
}
catch(err){
console.log('error due to ', err);
}
来自util.cs的:
private static app application;
private view app_view;
public TaskbarIcon sys_tray_icon;
private async Task init_remote_conf(){
// XXX: debug start->exit bug
log.write_debug("before simple_task");
await util.sleep_async(500);
log.write_debug("before get_server_conf_async");
// ........ other async init calls
}
private async void startup_cb(){
util.cleanup_tray_icons();
sys_tray_icon = (TaskbarIcon)FindResource("tray_icon");
sys_tray_icon.Visibility = Visibility.Hidden;
app_view = new view(application);
sys_tray_icon.DataContext = app_view;
conf.get_cmd_args();
sys_tray_icon.Visibility = Visibility.Visible;
log.perr("start", true);
await init_remote_conf();
log.write_debug("after init_remote_conf");
// ......... other startup code
}
protected override void OnExit(ExitEventArgs e){
sys_tray_icon.CloseBalloon();
sys_tray_icon.Dispose();
base.OnExit(e);
}
private void exit_cb(string reason){
log.perr("exit", "reason: "+reason, null, null, true, true);
}
private static bool unhandled_exception_sent = false;
private static void crash_cb(Exception e){
if (unhandled_exception_sent)
return;
log.perr("unhandled_exception", e.Message, e.StackTrace, null,
true, true);
unhandled_exception_sent = true;
// Exit event isn't called if we're in error state
application.exit_cb("unhandled_exception");
}
[STAThread]
public static void Main(string[] args){
if (!SingleInstance<app>.InitializeAsFirstInstance(unique))
return;
AppDomain.CurrentDomain.UnhandledException +=
(s, e) => crash_cb((Exception)e.ExceptionObject);
log.init();
application = new app();
application.ShutdownMode = ShutdownMode.OnExplicitShutdown;
application.InitializeComponent();
application.DispatcherUnhandledException += (s, e) => {
crash_cb(e.Exception); };
application.Exit += (s, e) =>
application.exit_cb(e.ApplicationExitCode.ToString());
application.SessionEnding += (s, e) => {
log.perr("session_ending", e.ReasonSessionEnding.ToString(),
null, null, true, true);
};
application.Startup += (s, e) => application.startup_cb();
application.Run();
// Allow single instance code to perform cleanup operations
SingleInstance<app>.Cleanup();
}
现在,对于大多数用户来说,调试打印生成:
在simple_task之前在get_server_conf_async之前 在init_remote_conf之后
但对于少数不幸的人来说,他们只能得到
在simple_task之前
立即调用应用程序exit_cb。
sleep_async仅用于调试行为(在任何其他更复杂的异步任务之前)。
我无法弄清楚什么可能导致应用程序在启动后很快调用shutdown。
修改(更多信息):
有什么想法吗?
答案 0 :(得分:0)
我终于弄清楚了为什么会发生这种情况,并希望分享以供将来参考。
当所有wpf应用程序初始化示例在调用Application.Run之前或之后不久设置应用程序MainWindow时,有一个很好的理由。
我在startup_cb代码末尾的异步调用之后设置了我的主窗口。在某些情况下,在某些情况下,这会导致wpf认为应用程序处于关闭条件并调用Shutdown。
将主窗口设置为start_cb的开头解决了问题。