防止一个程序出现多个实例的最安全方法是什么

本文关键字:实例 方法 安全 是什么 程序 一个 | 更新日期: 2023-09-27 18:19:36

我试图阻止我的程序在任何给定时间运行多个实例。我读过关于使用互斥和windows事件的文章,但这两个线程都已经有好几年的历史了,我很好奇使用.net4是否有更简单、更优雅的方法来处理这一问题?我还以为我读过表单的设置,该设置允许您拒绝属性的多个实例?有人能告诉我们防止一个程序的多个实例的最安全和/或最简单的方法是什么吗?

防止一个程序出现多个实例的最安全方法是什么

最安全的方法是使用.NET中的内置支持,WindowsFormsApplicationBase.IsSingleInstance属性。很难猜测它是否合适,你没有花太多精力描述你的确切需求。不,在过去的5年里没有任何变化Hans Passant 1月7日0:38

这是最好的答案,但汉斯没有把它作为答案。

在VB中,您可以在Winforms项目的项目级别(Properties>General)设置此项。

在C#中,您可以使用类似的代码。。当然需要转换。。

Dim tGrantedMutexOwnership As Boolean = False
Dim tSingleInstanceMutex As Mutex = New Mutex(True, "MUTEX NAME HERE", tGrantedMutexOwnership)
If Not tGrantedMutexOwnership Then
'
' Application is already running, so shut down this instance
'
Else
' 
' No other instances are running
'
End If

哎呀,我忘了提一下,您需要在Application.Run()调用

之后放置GC.KeepAlive(tSingleInstanceMutex)
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Windows.Forms;
namespace YourNameSpaceGoesHere
{
    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main()
        {
            if (Process.GetProcessesByName("YourFriendlyProcessNameGoesHere").Length > 1)
            {
                MessageBox.Show(Application.ProductName + " already running!");
                Application.ExitThread();
            }
            else
            {
                Application.EnableVisualStyles();
                Application.SetCompatibleTextRenderingDefault(false);
                Application.Run(new YourStartUpObjectFormNameGoesHere());
            }
        }
    }
}