C# 激活窗口
C# 激活窗口
窗体启动后,再次启动时判断进程是否存在,如果已经存在则直接拉起当前进程,前置显示并聚焦窗口。
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main(string[] args)
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Process instance = RunningInstance();
if (instance == null)
{
Application.Run(new Form1(args));
}
else
{
HandleRunningInstance(instance, args);
}
}
private static Process RunningInstance()
{
Process current = Process.GetCurrentProcess();
Process[] processes = Process.GetProcessesByName(current.ProcessName);
foreach (Process process in processes)
{
if (process.Id != current.Id)
{
if (Assembly.GetExecutingAssembly().Location.Replace("/", "\\") == current.MainModule.FileName)
{
return process;
}
}
}
return null;
}
private static void HandleRunningInstance(Process instance, string[] args)
{
//ShowWindowAsync(instance.MainWindowHandle, 1); //调用api函数,正常显示窗口
//SetForegroundWindow(instance.MainWindowHandle); //将窗口放置最前端
IntPtr handle = FindWindow(null, WindowUtils.getWindowTitle(args[7]));
if (handle == IntPtr.Zero)
{
return;
}
SwitchToThisWindow(handle, true);
}
欢迎讨论,相互学习。
cdtxw@foxmail.com