C# 避免程序重复启动

2021-04-21 05:28

阅读:755

标签:visual   thread   避免   icon   reading   else   sum   mes   log   

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
using System.Threading;

namespace WindowsFormsApplication1
{
    static class Program
    {
        /// 
        /// The main entry point for the application.
        /// 
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            bool ret;
            Mutex mutex = new Mutex(true, Application.ProductName, out   ret);
            if (ret)
            {
                Application.Run(new Form1());
            }
            else
            {
                MessageBox.Show("该程序已经启动", "提示信息", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
            
        }
    }
}

应用程序多次启动会因为资源占用等问题对程序的正常运行产生影响,在某些情况下需要对程序的启动次数进行限制。红色部分代码的作用是避免程序重复启动。

C# 避免程序重复启动

标签:visual   thread   避免   icon   reading   else   sum   mes   log   

原文地址:https://www.cnblogs.com/LicwStack/p/8587352.html


评论


亲,登录后才可以留言!