C# 单例模式

在Program里写入代码:

复制代码
 static class Program
    {
        /// <summary>
        /// 应用程序的主入口点。
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
           // Application.Run(new FnFather());

            Mutex mutex = new Mutex(false, "SingelInstance");
            if (!mutex.WaitOne(0, false))
            {
                mutex.Close();
                mutex = null;
            }
            if (mutex != null)
            {
                Application.Run(new FnFather());
            }
            else
            {
                MessageBox.Show("程序已运行");
            }
        }
    }
复制代码

 

posted @   JasonGu0  阅读(186)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示