从C#的Windows shell上下文菜单中获取多个文件(参数)

我正在编写一个C#应用程序,它将文件作为参数,我将它添加到下面列出的代码的shell上下文菜单;

if (((CheckBox)sender).CheckState == CheckState.Checked) { RegistryKey key = Registry.CurrentUser.OpenSubKey("Software\\Classes\\*\\shell\\" + KEY_NAME + "\\command"); if (key == null) { key = Registry.CurrentUser.CreateSubKey("Software\\Classes\\*\\shell\\" + KEY_NAME + "\\command"); key.SetValue("", Application.ExecutablePath + " \"%1\""); } } else if (((CheckBox)sender).CheckState == CheckState.Unchecked) { RegistryKey key = Registry.CurrentUser.OpenSubKey("Software\\Classes\\*\\shell\\" + KEY_NAME); if (key != null) { Registry.CurrentUser.DeleteSubKeyTree("Software\\Classes\\*\\shell\\" + KEY_NAME); } 

它运行良好,但如果我select多个文件,应用程序运行的多个实例。 例如,如果我select5个文件5个应用程序正在打开,我该如何解决这个问题?

检测应用程序的实例是否已经在启动时运行。

如果是, 请将命令行参数发送到正在运行的实例并退出新实例。