Run one instance from the application

前端 未结 7 944
盖世英雄少女心
盖世英雄少女心 2020-12-16 06:49

I have a windows application (C#) and i need to configure it to run one instance from the application at the time , It means that one user clicked the .exe file and the appl

相关标签:
7条回答
  • 2020-12-16 07:20

    Edit : After the question was amended to include c#. My answer works only for vb.net application

    select the Make single instance application check box to prevent users from running multiple instances of your application. The default setting for this check box is cleared, allowing multiple instances of the application to be run.

    You can do this from Project -> Properties -> Application tab

    Source

    0 讨论(0)
  • 2020-12-16 07:22

    I found this code, it's work!

     /// <summary>
            /// The main entry point for the application.
            /// Limit an app.to one instance
            /// </summary>
            [STAThread]
            static void Main()
            {
                //Mutex to make sure that your application isn't already running.
                Mutex mutex = new System.Threading.Mutex(false, "MyUniqueMutexName");
                try
                {
                    if (mutex.WaitOne(0, false))
                    {
                        // Run the application
                        Application.EnableVisualStyles();
                        Application.SetCompatibleTextRenderingDefault(false);
                        Application.Run(new Form1());
                    }
                    else
                    {
                        MessageBox.Show("An instance of the application is already running.",
                            "An Application Is Running", MessageBoxButtons.OK, MessageBoxIcon.Information);
                    }
                }
                catch (Exception ex)
                {
                    MessageBox.Show(ex.Message, "Application Error 'MyUniqueMutexName'", 
                        MessageBoxButtons.OK, MessageBoxIcon.Information);
                }
                finally
                {
                    if (mutex != null)
                    {
                        mutex.Close();
                        mutex = null;
                    }
                }
            }
    
    0 讨论(0)
  • 2020-12-16 07:27

    I'd use a Mutex for this scenario. Alternatively, a Semaphore would also work (but a Mutex seems more apt).

    Here's my example (from a WPF application, but the same principles should apply to other project types):

    public partial class App : Application
    {
        const string AppId = "MY APP ID FOR THE MUTEX";
        static Mutex mutex = new Mutex(false, AppId);
        static bool mutexAccessed = false;
    
        protected override void OnStartup(StartupEventArgs e)
        {
            try
            {
                if (mutex.WaitOne(0))
                    mutexAccessed = true;
            }
            catch (AbandonedMutexException)
            {
                //handle the rare case of an abandoned mutex
                //in the case of my app this isn't a problem, and I can just continue
                mutexAccessed = true;
            }
    
            if (mutexAccessed)
                base.OnStartup(e);
            else
                Shutdown();
        }
    
        protected override void OnExit(ExitEventArgs e)
        {
            if (mutexAccessed)
                mutex?.ReleaseMutex();
    
            mutex?.Dispose();
            mutex = null;
            base.OnExit(e);
        }
    }
    
    0 讨论(0)
  • 2020-12-16 07:30

    I often solve this by checking for other processes with the same name. The advantage/disadvantage with this is that you (or the user) can "step aside" from the check by renaming the exe. If you do not want that you could probably use the Process-object that is returned.

      string procName = Process.GetCurrentProcess().ProcessName;
      if (Process.GetProcessesByName(procName).Length == 1)
      {
          ...code here...
      }
    

    It depends on your need, I think it's handy to bypass the check witout recompiling (it's a server process, which sometimes is run as a service).

    0 讨论(0)
  • 2020-12-16 07:33

    The VB.Net team has already implemented a solution. You will need to take a dependency on Microsoft.VisualBasic.dll, but if that doesn't bother you, then this is a good solution IMHO. See the end of the following article: Single-Instance Apps

    Here's the relevant parts from the article:

    1) Add a reference to Microsoft.VisualBasic.dll 2) Add the following class to your project.

    public class SingleInstanceApplication : WindowsFormsApplicationBase
    {
        private SingleInstanceApplication()
        {
            base.IsSingleInstance = true;
        }
    
        public static void Run(Form f, StartupNextInstanceEventHandler startupHandler)
        {
            SingleInstanceApplication app = new SingleInstanceApplication();
            app.MainForm = f;
            app.StartupNextInstance += startupHandler;
            app.Run(Environment.GetCommandLineArgs());
        }
    }
    

    Open Program.cs and add the following using statement:

    using Microsoft.VisualBasic.ApplicationServices;
    

    Change the class to the following:

    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            SingleInstanceApplication.Run(new Form1(), StartupNextInstanceEventHandler);
        }
    
        public static void StartupNextInstanceEventHandler(object sender, StartupNextInstanceEventArgs e)
        {
            MessageBox.Show("New instance");
        }
    }
    
    0 讨论(0)
  • 2020-12-16 07:38

    Assuming you are using C#

            static Mutex mx;
            const string singleInstance = @"MU.Mutex";
            /// <summary>
            /// The main entry point for the application.
            /// </summary>
            [STAThread]
            static void Main()
            {
                try
                {
                    System.Threading.Mutex.OpenExisting(singleInstance);
                    MessageBox.Show("already exist instance");
                    return;
                }
                catch(WaitHandleCannotBeOpenedException)
                {
                    mx = new System.Threading.Mutex(true, singleInstance);
    
                }
                Application.EnableVisualStyles();
                Application.SetCompatibleTextRenderingDefault(false);
                Application.Run(new MainForm());
            }
    
    0 讨论(0)
提交回复
热议问题