翱翔.Net

释放.Net的力量
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

(小技巧六)只允许一个进程运行winform

Posted on 2005-02-03 17:08  Hover  阅读(3333)  评论(4编辑  收藏  举报

 

static void Main() 
  
{
   
// get the name of our process
   string proc=Process.GetCurrentProcess().ProcessName;
   
// get the list of all processes by that name
   Process[] processes=Process.GetProcessesByName(proc);
   
// if there is more than one process
   if (processes.Length > 1)
   
{
    MessageBox.Show(
"Application is already running");
    
return;
   }
 else
                Application.Run(
new Form1());
  }