Exemplo n.º 1
0
        static void Main()
        {
            //TODO: SCALING: http://www.telerik.com/blogs/winforms-scaling-at-large-dpi-settings-is-it-even-possible-

            //Double Check sharex source, they appear to remove AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            //from theur [Form].Designer.cs

            /*
             *
             * TODO: If the application ended abruptly before, check the log (CREATE THE LOG)
             * Log where the application was originally loaded from, as It should be where it was "unzipped"
             * Display a pop-up when OSIRT is re-launched. Example: "It appears as though [CASE] did not shut down correctly. Would you like to re-load this case?"
             * If "no" is selected, we will still need to re-archive this case, as it will just be an exposed directory.
             * Couple of answers here (no code, but some advice): http://stackoverflow.com/questions/2481047/executing-code-on-application-crash
             **/



#if !DEBUG
            try
            {
                AppDomain.CurrentDomain.UnhandledException += (sender, e)
                                                              => FatalExceptionObject(e.ExceptionObject);

                Application.ThreadException += (sender, e)
                                               => FatalExceptionHandler.Handle(e.Exception);
#endif

            //prevent multi-instance (Matt Davis): http://stackoverflow.com/questions/19147/what-is-the-correct-way-to-create-a-single-instance-application
            if (mutex.WaitOne(TimeSpan.Zero, true))
            {
                Application.EnableVisualStyles();
                Application.SetCompatibleTextRenderingDefault(false);
                Application.Run(new MainForm());
                mutex.ReleaseMutex();
            }
            else
            {
                // send our Win32 message to make the currently running instance
                // jump on top of all the other windows
                NativeMethods.PostMessage(
                    (IntPtr)NativeMethods.HWND_BROADCAST,
                    NativeMethods.WM_SHOWME,
                    IntPtr.Zero,
                    IntPtr.Zero);
            }

            //https://github.com/cefsharp/CefSharp/wiki/General-Usage#high-dpi-displayssupport
            //https://github.com/cefsharp/CefSharp/issues/1757
            Cef.EnableHighDPISupport();

#if !DEBUG
        }

        catch (Exception e)
        {
            FatalExceptionHandler.Handle(e);
        }
#endif
        }//main
Exemplo n.º 2
0
        }//main


        //http://stackoverflow.com/questions/406385/handling-unhandled-exceptions-problem
        static void FatalExceptionObject(object exceptionObject)
        {
            var huh = exceptionObject as Exception;

            if (huh == null)
            {
                huh = new NotSupportedException(
                    "Unhandled exception doesn't derive from System.Exception: "
                    + exceptionObject.ToString()
                    );
            }
            FatalExceptionHandler.Handle(huh);
        }