Update version to 1.0.1

Try compatible high DPI screens
Fix Host setting not saved
This commit is contained in:
2022-05-13 20:16:20 +08:00
parent ba25cd6e7c
commit 38e88d6ea5
9 changed files with 5500 additions and 4952 deletions

View File

@@ -15,6 +15,9 @@ namespace GrasscutterTools
[STAThread]
private static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
//设置应用程序处理异常方式ThreadException处理
Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException);
//处理线程异常
@@ -22,8 +25,6 @@ namespace GrasscutterTools
//处理非UI线程异常
AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException;
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new FormMain());
}