SystemTrayMenu/Business/Program.cs

89 lines
3 KiB
C#
Raw Normal View History

// <copyright file="Program.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
2019-07-05 05:04:14 +12:00
namespace SystemTrayMenu
{
using System;
using System.Reflection;
using System.Windows.Forms;
using SystemTrayMenu.Utilities;
internal static class Program
2019-07-05 05:04:14 +12:00
{
private static bool isStartup = true;
2019-07-05 05:04:14 +12:00
[STAThread]
private static void Main(string[] args)
2019-07-05 05:04:14 +12:00
{
2020-03-17 02:45:19 +13:00
try
2019-07-05 05:04:14 +12:00
{
2020-03-17 02:45:19 +13:00
Log.Initialize();
2020-05-05 05:43:47 +12:00
Translator.Initialize();
Config.SetFolderByWindowsContextMenu(args);
Config.LoadOrSetByUser();
Config.Initialize();
PrivilegeChecker.Initialize();
2020-05-06 23:59:31 +12:00
if (SingleAppInstance.Initialize())
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.ThreadException += Application_ThreadException;
Scaling.Initialize();
FolderOptions.Initialize();
using (new App())
{
isStartup = false;
Log.WriteApplicationRuns();
Application.Run();
}
2019-07-05 05:04:14 +12:00
}
Application.ThreadException -= Application_ThreadException;
Config.Dispose();
2019-07-05 05:04:14 +12:00
}
catch (Exception ex)
{
2020-03-17 02:45:19 +13:00
AskUserSendError(ex);
2019-07-05 05:04:14 +12:00
}
finally
{
2020-03-17 09:05:52 +13:00
Log.Close();
2019-07-05 05:04:14 +12:00
}
}
private static void Application_ThreadException(object sender, System.Threading.ThreadExceptionEventArgs e)
{
AskUserSendError(e.Exception);
}
private static void AskUserSendError(Exception ex)
{
Log.Error("Application Crashed", ex);
DialogResult dialogResult = MessageBox.Show(
"A problem has been encountered and the application needs to restart. " +
"Reporting this error will help us make our product better. " +
"Press 'Yes' to open your standard email app (emailto: Markus@Hofknecht.eu). " + Environment.NewLine +
@"You can also create an issue manually here https://github.com/Hofknecht/SystemTrayMenu/issues" + Environment.NewLine +
"Press 'Cancel' to quit SystemTrayMenu.",
"SystemTrayMenu Crashed",
MessageBoxButtons.YesNoCancel);
2019-07-05 05:04:14 +12:00
if (dialogResult == DialogResult.Yes)
{
Log.ProcessStart("mailto:" + "markus@hofknecht.eu" +
"?subject=SystemTrayMenu Bug reported " +
Assembly.GetEntryAssembly().GetName().Version +
"&body=" + ex.ToString());
}
if (!isStartup && dialogResult != DialogResult.Cancel)
{
AppRestart.ByThreadException();
2019-07-05 05:04:14 +12:00
}
}
}
}