将应用程序注册到URI方案

时间:2013-04-05 19:19:07

标签: c# wpf windows registry

我有一个wpf应用程序,我通过执行以下操作注册为URI方案。

HKEY_CLASSES_ROOT
-->myappname
   -->shell
      -->open
         -->command
            (Default) = "c:\pathtomyapp\app.exe"

优秀!但是,我的应用程序强制一次只能运行一个实例。如何检测我的应用程序是否已在运行,例如将其带到前台?

1 个答案:

答案 0 :(得分:3)

您可以使用命名的互斥锁来检测该应用程序是否已在运行。或者,如果你有一个GUI应用程序,你可以从VisualBasic's SingleInstance application继承你的表单,它会为你做同样的事情。

  public class SingleInstanceController
    : WindowsFormsApplicationBase
  {
    public SingleInstanceController()
    {
      // Set whether the application is single instance
      this.IsSingleInstance = true;

      this.StartupNextInstance += new
        StartupNextInstanceEventHandler(this_StartupNextInstance);
    }

    void this_StartupNextInstance(object sender, StartupNextInstanceEventArgs e)
    {
      // Here you get the control when any other instance is
      // invoked apart from the first one.
      // You have args here in e.CommandLine.

      // You custom code which should be run on other instances
    }

    protected override void OnCreateMainForm()
    {
      // Instantiate your main application form
      this.MainForm = new Form1();
    }
  }

[STAThread]
static void Main(string[] args)
{    
  SingleInstanceController controller = new SingleInstanceController();
  controller.Run(args);
}

无论何时用C#编写代码都没关系,因为这个类可以作为.Net框架和所有语言的一部分。

这是一个wrapper for the WPF