启动应用程序只有一次(单声道)(Start Application only once (Mono)

2019-10-28 17:36发布

我目前正在开发在C#中的单应用程序,我想只有一次开始。 我知道,这可以用互斥体来实现。 但我怎么能带来使用单一的应用程序面前? 我试图让通过Process

Process.GetProcessByName("AudioCuesheetEditor")

但无法访问MainWindowHandle。

我怎样才能把正在运行的应用程序前?

感谢您的解答。

编辑:

现在我已经能够得到MainWindowHandle,但它是一个IntPtr的。 我如何把这个句柄面前? 我试过了

Window wRunning = new Window(handle);
wRunning.Present();

但是这给了我一个例外:(。

Answer 1:

我已经能够与文件系统观察修复:

        FileSystemWatcher fswRunning = new FileSystemWatcher(Path.GetTempPath() + "AudioCuesheetEditor");
        fswRunning.Filter = "*.txt";
        fswRunning.Changed += delegate(object sender, FileSystemEventArgs e) {
            log.debug("FileSystemWatcher called Changed");
            if (pAudioCuesheetEditor != null)
            {
                log.debug("pAudioCuesheetEditor != null");
                pAudioCuesheetEditor.getObjMainWindow().Present();
            }
        };
        fswRunning.EnableRaisingEvents = true;
        Boolean bAlreadyRunning = false;
        Process[] arrPRunning = Process.GetProcesses();
        foreach (Process pRunning in arrPRunning)
        {
            Boolean bCheckProcessMatch = false;
            if (Environment.OSVersion.Platform == PlatformID.Unix)
            {
                if (pRunning.HasExited == false)
                {
                    log.debug("pRunning.ProcessName = " + pRunning.ProcessName + " pRunning.MainWindowTitle = " + pRunning.MainWindowTitle);
                    if (pRunning.ProcessName.ToLower().Contains("mono"))
                    {
                        for (int i = 0; i < pRunning.Modules.Count;i++)
                        {
                            if (pRunning.Modules[i].ModuleName.Contains("AudioCuesheetEditor"))
                            {
                                bCheckProcessMatch = true;
                                i = pRunning.Modules.Count;
                            }
                        }
                    }
                }
            } 
            else
            {
                log.debug("pRunning.ProcessName = " + pRunning.ProcessName);
                if (pRunning.ProcessName == Process.GetCurrentProcess().ProcessName)
                {
                    bCheckProcessMatch = true;
                }
            }
            log.debug("bCheckProcessMatch == " + bCheckProcessMatch);
            if ((pRunning.Id != Process.GetCurrentProcess().Id) && (bCheckProcessMatch == true))
            {
                log.info("Writing to file " + Path.GetTempPath() + "AudioCuesheetEditor" + Path.DirectorySeparatorChar + "message.txt");
                File.WriteAllText(Path.GetTempPath() + "AudioCuesheetEditor" + Path.DirectorySeparatorChar + "message.txt","Present");
                bAlreadyRunning = true;
            }
        }
        log.debug("bAlreadyRunning = " + bAlreadyRunning);
        if (bAlreadyRunning == false)
        {
               //Start Application
        }


Answer 2:

使用FSW这似乎是非常哈克。

我认为最好的解决方法是使用IPC。

特别是,我会使用的DBus。 事实上,这就是女妖的使用,以避免被创建它的多个实例。 因此,继续前进,并检查了我们的源代码,如果你有兴趣。



文章来源: Start Application only once (Mono)