这个问题可能看起来有点模糊,但我们开始吧。
我正在阻止我的 wpf 应用程序的多个实例,如下所示:
Process proc = Process.GetCurrentProcess();
if (Process.GetProcessesByName(proc.ProcessName).Length > 1)
{
Application.Current.Shutdown();
return;
}
if (e.Args != null && e.Args.Count() > 0)
{
this.Properties["Magnet"] = e.Args;
}
是否可以将命令行参数传递给已经运行的应用程序?