码迷,mamicode.com
首页 > Windows程序 > 详细

只能运行一个程序,禁止运行多个相同的程序 C#

时间:2017-07-12 10:04:37      阅读:294      评论:0      收藏:0      [点我收藏+]

标签:format   ram   运行   etc   form   for   导入   exist   end   

原文发布时间为:2009-04-06 —— 来源于本人的百度文章 [由搬家工具导入]

Program.cs 里面改成如下:

static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            bool bExist;
            System.Threading.Mutex MyMutex = new System.Threading.Mutex(true, "OnlyRunOncetime", out

bExist);
            if (bExist)
            {
                Application.Run(new Form1());
                MyMutex.ReleaseMutex();
            }
            else
            {
                MessageBox.Show("程序已经运行!", "信息提示", MessageBoxButtons.OK,

MessageBoxIcon.Information);
            }
        }

只能运行一个程序,禁止运行多个相同的程序 C#

标签:format   ram   运行   etc   form   for   导入   exist   end   

原文地址:http://www.cnblogs.com/handboy/p/7153278.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!