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 应用程序,我使用单击一次部署到我的计算机上的共享文件夹,以便可以通过本地网络安装它。当我点击安装按钮时,它会提示我下载/保存安装文件,当我运行它时,它会将应用程序安装到我的计算机上。但是,当我尝试启动它时,我得到了这个屏幕
然后什么也没有发生。有任何想法吗...?
该对话框正在检查更新。我最好的猜测是您在应用程序启动时发生了未处理的异常,这会导致您的应用程序崩溃。
对于 WPF,您需要为这两个事件添加处理程序:
AppDomain.CurrentDomain.UnhandledException Application.Current.DispatcherUnhandledException
我通常在我的应用程序类的OnStartup方法中附加到它们。在事件处理程序中,我将记录异常,以便查看生产中出现的问题。
OnStartup