gpt4 book ai didi

c# - 通过已执行的应用程序关闭执行程序应用程序

转载 作者:行者123 更新时间:2023-12-02 04:42:34 24 4
gpt4 key购买 nike

我的 C# 项目有问题。我收到了 2 个应用程序:

  • Executor 应用程序,我称之为 Mini Launcher
  • 已执行的应用程序,我称之为 Launcher

我的问题是:我想通过 Mini Launcher 运行我的 Launcher,然后在 Launcher 应用程序的 Show 事件中关闭 Mini Launcher。My Mini Launcher 类似于启动画面,但具有升级启动器等附加功能。这是我的执行代码:

ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.WorkingDirectory = "My Directory"
startInfo.FileName = "My App";
try
{
using (Process exeProcess = Process.Start(startInfo))
{
exeProcess.();
}
}
catch
{
...
}

最佳答案

看看 Mutex类(class)。命名的 mutices 为应用程序提供了一种相互发送信号的方法。
以下示例显示了两个控制台应用程序。 TestMutexLauncher 应用程序启动 TestMutex 应用程序:

using System;
using System.Diagnostics;
using System.Threading;

namespace TestMutexLauncher
{
class Program
{
static void Main(string[] args)
{
var p = Process.Start("TestMutex");
Console.WriteLine("Waiting for other process to release the mutex.");
Thread.Sleep(1000); // maybe p.WaitForInputIdle is an alternative for WinForms/WPF
Mutex mutex = null;
for (int i = 0; i < 100; i++)
{
if (Mutex.TryOpenExisting("MyUniqueMutexName", out mutex))
break;
Thread.Sleep(100);
}
if (mutex != null)
{
try
{
mutex.WaitOne();
mutex.ReleaseMutex();
}
finally
{
mutex.Dispose();
}
}
}
}
}

启动器应用程序启动进程并等待在另一个进程中创建 Mutex。如果它可以在指定的时间范围内获得 Mutex 的所有权,它就等待获得 Mutex 的所有权。之后,它释放并释放 Mutex。
启动的应用程序的第一个任务是创建 Mutex,执行初始化操作,然后释放 Mutex。

using System;
using System.Threading;

namespace TestMutex
{
class Program
{
static void Main(string[] args)
{
using (var mutex = new Mutex(true, "MyUniqueMutexName"))
{
// Do something
for (int i = 0; i < 10000; i++)
Console.Write(".");
Console.WriteLine();
Console.WriteLine("Press enter...");
Console.ReadLine();
mutex.ReleaseMutex();
}
for (int i = 0; i < 10000; i++)
Console.Write(".");
Console.WriteLine();
Console.WriteLine("Press enter...");
Console.ReadLine();

}
}
}

关于c# - 通过已执行的应用程序关闭执行程序应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20517948/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com