Exemplo n.º 1
0
        static void Main(string[] args)
        {
            if (IsRunning.AllRunning())
            {
                MBox.ErrorMessage("An instance of the application is already running.");
            }
            else
            {
                Mutex mutex = new Mutex(false, Self.LauncherMutex);
                try {
                    if (mutex.WaitOne(0, false))
                    {
                        if (args.Length != 0)
                        {
                            MBox.ErrorMessage("Arguments are not supported yet!\n\nPassed Arguments:\n" + String.Join(" ", args));
                        }

                        //Register all components for launcher, including its settings and configs.
                        Directory.SetCurrentDirectory(Path.GetDirectoryName(Application.ExecutablePath));

                        ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;

                        Application.EnableVisualStyles();
                        Application.SetCompatibleTextRenderingDefault(true);
                        Application.Run(new MainWindow());
                    }
                } finally {
                    mutex.Close();
                }
            }
        }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            Self.isDebugMode = Debugger.IsAttached;

            if (IsRunning.AllRunning())
            {
                MBox.ErrorMessage("An instance of the application is already running.");
            }
            else
            {
                Mutex mutex = new Mutex(false, Self.LauncherMutex);
                try {
                    if (mutex.WaitOne(0, false))
                    {
                        if (args.Length != 0)
                        {
                            MBox.ErrorMessage("Arguments are not supported yet!\n\nPassed Arguments:\n" + String.Join(" ", args));
                        }

                        Directory.SetCurrentDirectory(Path.GetDirectoryName(Application.ExecutablePath));

                        ServicePointManager.Expect100Continue = true;
                        ServicePointManager.SecurityProtocol  = SecurityProtocolType.Tls12;

                        Application.ThreadException += (sender, exception) => { ExceptionCapture((Exception)exception.Exception, "ThreadExceptionEventHandler"); };
                        AppDomain.CurrentDomain.UnhandledException += (sender, exception) => { ExceptionCapture((Exception)exception.ExceptionObject, "UnhandledExceptionEventHandler"); };
                        Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException);

                        Application.EnableVisualStyles();
                        Application.SetCompatibleTextRenderingDefault(true);
                        Application.Run(new MainWindow(args));
                    }
                } finally {
                    mutex.Close();
                }
            }
        }
Exemplo n.º 3
0
 public static void ExceptionCapture(Exception exception, String className)
 {
     MBox.ErrorMessage(className + ": " + exception.Message);
 }