前言:在C#开发过程中,默认情况下同一个WinForm程序文件可以连续打开多次运行,但在有些项目中,同一个程序只允许运行一次,若多次运行同一个程序则显示第一次运行的界面,所以,要禁止多个进程运行,当重复运行时激活以前的进程的方法可参考如下代码。
目的:禁止多个进程运行,当重复运行时激活以前的进程
代码:
在Program.cs文件中添加如下代码即可
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Runtime.InteropServices;
using System.Diagnostics;
using System.Reflection;
namespace MyApplication
{
static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
//这里判断是否已经有实例在运行
Process instance = RunningInstance();
if (instance != null) //进程中已经有一个实例在运行
{
HandleRunningInstance(instance);
}
else //没有实例在运行
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1()); //***主窗体的Form名称**//
}
}
#region 在进程中查找是否已经有实例在运行
//确保程序只运行一个实例
public static Process RunningInstance()
{
Process currentProcess = Process.GetCurrentProcess();
Process[] Processes = Process.GetProcessesByName(currentProcess.ProcessName);
//遍历与当前进程名称相同的进程列表
foreach (Process process in Processes)
{
//如果实例已经存在,则忽略当前进程
if (process.Id != currentProcess.Id)
{
//保证要打开的进程 同 已经存在的进程来自同一个文件路径
if (Assembly.GetExecutingAssembly().Location.Replace("/", "\\") == currentProcess.MainModule.FileName)
{
//返回另一个进程实例
return process;
}
}
}
return null; //找不到其他进程实例,返回nulL。
}
#endregion
#region 调用Win32API,进程中已经有一个实例在运行,激活其窗口并显示在最前端
private static void HandleRunningInstance(Process instance)
{
//MessageBox.Show("已经在运行!", "提示信息", MessageBoxButtons.OK, MessageBoxIcon.Information);
ShowWindowAsync(instance.MainWindowHandle, SW_SHOWNOMAL);//调用API函数,正常显示窗口
SetForegroundWindow(instance.MainWindowHandle);//将窗口放置在最前端
}
#endregion
/// <summary>
/// 该函数设置由不同线程产生的窗口的显示状态
/// </summary>
/// <param name="hWnd">窗口句柄</param>
/// <param name="cmdShow">指定窗口如何显示。查看允许值列表</param>
/// <returns>如果窗口原来可见,返回值为非零;如果窗口原来被隐藏,返回值为零</returns>
[DllImport("User32.dll")]
private static extern bool ShowWindowAsync(IntPtr hWnd, int cmdShow);
private const int SW_SHOWNOMAL = 1;
/// <summary>
/// 该函数将创建指定窗口的线程设置到前台,并且激活该窗口
/// 系统给创建前台窗口的线程分配的权限稍高于其他线程。
/// </summary>
/// <param name="hWnd">将被激活并被调入前台的窗口句柄</param>
/// <returns>如果窗口设入了前台,返回值为非零;如果窗口未被设入前台,返回值为零</returns>
[DllImport("User32.dll")]
private static extern bool SetForegroundWindow(IntPtr hWnd);
}
}
版权声明:本文来源于网友收集或网友提供,仅供学习交流之用,如果有侵权,请转告版主或者留言,我们将立即删除。
文章评论 本文章有个评论