避免重复打开程序

来源:互联网 发布:淘宝怎么设置不同价格 编辑:程序博客网 时间:2024/06/05 11:11

方法来源于网路

方法1:    
  public   static   void   Main(string[]   args)    
  {  
    //声明互斥体  
    System.Threading.Mutex   mutex   =   new   System.Threading.Mutex(false,   "ThisShouldOnlyRunOnce");  
    //判断互斥体是否使用中  
    bool   Running   =   !mutex.WaitOne(0,   false);  
    if   (!   Running)  
      Application.Run(new   FormMain());  
    else  
      MessageBox.Show("程序已经启动!");  
  }  
   
     
   
  方法2:  
   
  //添加引用  
  using   System.Runtime.InteropServices;  
   
  //申明  
  [StructLayout(   LayoutKind.Sequential)]  
  public   class   SECURITY_ATTRIBUTES    
  {  
    public   int   nLength;    
    public   int   lpSecurityDescriptor;    
    public   int   bInheritHandle;    
  }  
  [System.Runtime.InteropServices.DllImport("kernel32")]  
  private   static   extern   int   GetLastError();   [System.Runtime.InteropServices.DllImport("kernel32")]  
  private   static   extern   IntPtr   CreateMutex(SECURITY_ATTRIBUTES   lpMutexAttributes,bool   bInitialOwner,string   lpName);   [System.Runtime.InteropServices.DllImport("kernel32")]  
  private   static   extern   int   ReleaseMutex(IntPtr   hMutex);  
  const   int   ERROR_ALREADY_EXISTS   =   0183;  
   
  //调用    
  static   void   Main()    
  {  
    IntPtr   hMutex;  
    hMutex=CreateMutex(null,false,"test");  
    if   (GetLastError()!=ERROR_ALREADY_EXISTS)  
    {  
        Application.Run(new   Form1());  
    }  
    else  
    {  
        MessageBox.Show("本程序只允许同时运行一个");  
        ReleaseMutex(hMutex);  
    }  
  }