0

我目前正在用 c# 开发一个单声道应用程序,我只想启动一次。我知道,这可以通过互斥锁来实现。但是如何使用单声道将应用程序放在前面?我尝试通过

Process.GetProcessByName("AudioCuesheetEditor")

但无法访问 MainWindowHandle。

如何将正在运行的应用程序放在前面?

谢谢你的回答。

编辑:

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

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

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

4

2 回答 2

0

为此使用 FSW 似乎很 hacky。

我认为最优雅的解决方案是使用 IPC。

特别是,我会使用 DBus。事实上,这是Banshee用来避免创建多个实例的方法。因此,如果您有兴趣,请继续查看我们的源代码。

于 2013-09-21T12:30:32.167 回答
0

我已经能够使用文件系统观察程序修复它:

        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
        }
于 2013-09-21T11:56:57.890 回答