C# winform判断自身程序是否已运行,如果已运行则激活窗体
发布时间:2024年01月09日
C# winform判断自身程序是否已运行,如果已运行则激活窗体
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApp1
{
internal static class Program
{
[DllImport("user32.dll")]
public static extern void SwitchToThisWindow(IntPtr hWnd, bool fAltTab);
[STAThread]
static void Main()
{
Process currentProcess = Process.GetCurrentProcess();
Process[] processes = Process.GetProcessesByName(currentProcess.ProcessName);
if (processes.Length > 1)
{
IntPtr handle = GetOldProcess(processes, currentProcess).MainWindowHandle;
SwitchToThisWindow(handle, true);
Thread.Sleep(1000);
Environment.Exit(1);
}
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
private static Process GetOldProcess(Process[] processes, Process currentProcess)
{
foreach (Process process in processes)
{
if (process.Id != currentProcess.Id)
{
return process;
}
}
return null;
}
}
}
文章来源:https://blog.csdn.net/qq_23062949/article/details/135480799
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:chenni525@qq.com进行投诉反馈,一经查实,立即删除!