add onova and debug
This commit is contained in:
parent
c2b42d40db
commit
e41b348acb
14 changed files with 114 additions and 15 deletions
|
@ -2,6 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Configuration;
|
||||
using System.Data;
|
||||
using System.Diagnostics;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows;
|
||||
|
@ -13,5 +14,10 @@ namespace EnvyUpdate
|
|||
/// </summary>
|
||||
public partial class App : Application
|
||||
{
|
||||
public bool DoHandle { get; set; }
|
||||
private void Application_DispatcherUnhandledException(object sender, System.Windows.Threading.DispatcherUnhandledExceptionEventArgs e)
|
||||
{
|
||||
MessageBox.Show(e.Exception.ToString());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue