单实例应用程序无法启动

我开发了一个使用.net 4.5的单实例WinForm应用程序,并在Main类上创建了一个互斥体。 某些用户报告他们无法启动应用程序,因为互斥量已被占用。

    static string guid = ((GuidAttribute)Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(GuidAttribute), true)[0]).Value + "-OrientalWave";
    public static string GUID { get { return guid; } }

    [STAThread]
    static void Main(string[] args)
    {
        AppDomain currentDomain = AppDomain.CurrentDomain;
        currentDomain.UnhandledException += new UnhandledExceptionEventHandler(UnhandledExceptionHandler);

        // Single Instance Check
        bool createdNew;
        using (var mutex = new Mutex(true, guid, out createdNew))
        {
            if (createdNew)
            {
                Application.EnableVisualStyles();
                Application.SetCompatibleTextRenderingDefault(false);
                if (args.Length > 0)
                {
                    string filename = args[0];
                    Application.Run(new frmMain(filename));
                }
                else
                    Application.Run(new frmMain());
            }
            else
            {
                if (args.Length > 0)
                {
                    // If i want to open a file
                    string filename = args[0];

                    NamedPipesClient pipeClient = new NamedPipesClient();
                    pipeClient.Start();
                    pipeClient.SendMessage(filename);
                    pipeClient.Stop();
                }
                else
                    MessageBox.Show("Only single instance allowed", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
    }

    static void UnhandledExceptionHandler(object sender, UnhandledExceptionEventArgs args)
    {
        try
        {
            var exception = (Exception)args.ExceptionObject;
            MessageBox.Show(exception.Message, null, MessageBoxButtons.OK, MessageBoxIcon.Error);
            Logger.Write(Logger.LogType.Error, exception.Source, "Message: " + exception.Message + " - Stack: " + exception.StackTrace);
        }
        catch { }
        Environment.Exit(0);
    }

我在网上搜索了一个解决方案或一种替代方法来创建一个实例应用程序,但没有成功。


如果有任何被遗弃的互斥体,它可能会发生。 您应该捕获AbandonedMutexException并通过调用ReleaseMutex()释放该互斥锁; 那么你应该能够获得一个互斥体。

你可以在这里找到一个类似的用例http://gonetdotnet.blogspot.in/2017/08/solved-how-to-handle-log4net.html

链接地址: http://www.djcxy.com/p/51175.html

上一篇: Single instance application not starting

下一篇: Single java application instance per network