Winfrom 程序不能重复启动

Posted 没有爪子的猫

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Winfrom 程序不能重复启动相关的知识,希望对你有一定的参考价值。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace Demo
{
    static class Program
    {
        /// <summary>
        /// 用于判断程序是否有重复启动的互斥量
        /// </summary>
        static System.Threading.Mutex _mutex;

        /// <summary>
        /// 应用程序的主入口点。
        /// </summary>
        [STAThread]
        static void Main()
        {
           
            //是否可以打开新进程
            bool createNew;

            /// 获取程序集Guid作为唯一标识,禁止程序重复启动
            Attribute guid_attr = Attribute.GetCustomAttribute(Assembly.GetExecutingAssembly(), typeof(GuidAttribute));
            string guid = ((GuidAttribute)guid_attr).Value;
            _mutex = new System.Threading.Mutex(true, guid, out createNew);

            if (false == createNew)
            {
                MessageBox.Show("程序已在本机运行,不能重复运行!", "系统消息");
                Application.Exit();
            }
            else
            {
                Application.EnableVisualStyles();
                Application.SetCompatibleTextRenderingDefault(false);
                _mutex.ReleaseMutex();    
                Application.Run(new FrmMain());
            }
        }
    }
}

 

以上是关于Winfrom 程序不能重复启动的主要内容,如果未能解决你的问题,请参考以下文章

访问片段的上下文 [重复]

winfrom中ToolStrip 与toolbar 怎么设置浮动与停靠

[Winfrom] 使用一个启动快捷方式,打开2个不同的窗体并且共用一个缓存空间

winfrom

Winfrom 桌面弹窗拦截 关闭进程简易程序 源代码下载

listview onclick toast在片段中不起作用[重复]