WPF 只允许运行一个程序(单例)(转)

时间:2022-08-29 19:30:55
问题描述:

有时一个程序需要单例运行,因为涉及到上下位连接,数据库访问,安全性等问题,本博客来探讨如何实现WPF 程序的单例运行。



措施:

利用 System.Threading.Mutex   来实现控制程序的单例运行。

这是MSDN 官方的资料: Mutex : http://msdn.microsoft.com/en-us/library/system.threading.mutex%28v=vs.110%29.aspx 


 S1 :在程序结构中找到 App.xaml.cs 文件

WPF 只允许运行一个程序(单例)(转)

在目录中,找到这样两个文件 App.xaml 和 App.xaml.cs

 S2:插入以下代码

[java] view plain copy
  1. namespace ElectronicNeedleTherapySystem  
  2. {  
  3.     /// <summary>  
  4.     /// App.xaml 的交互逻辑  
  5.     /// </summary>  
  6.     public partial class App : Application  
  7.     {  
  8.         System.Threading.Mutex mutex;  
  9.   
  10.         public App()  
  11.         {  
  12.             this.Startup += new StartupEventHandler(App_Startup);  
  13.         }  
  14.   
  15.         void App_Startup(object sender, StartupEventArgs e)  
  16.         {  
  17.             bool ret;  
  18.             mutex = new System.Threading.Mutex(true"ElectronicNeedleTherapySystem", out ret);  
  19.   
  20.             if (!ret)  
  21.             {  
  22.                 MessageBox.Show("已有一个程序实例运行");  
  23.                 Environment.Exit(0);  
  24.             }  
  25.   
  26.         }  
  27.     }  
  28. }  

其中, namespace ElectronicNeedleTherapySystem 和 mutex = new System.Threading.Mutex(true, "ElectronicNeedleTherapySystem", out ret); 中的

ElectronicNeedleTherapySystem换成自己的工程名称。

 S3:在 App.xaml 中设置启动窗体

[html] view plain copy
  1. <Application x:Class="ElectronicNeedleTherapySystem.App"  
  2.              xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"  
  3.              xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"  
  4.              StartupUri="LoginWindow.xaml"  
  5. .... />  

 S4:连续运行两次程序,就可以看到效果

第一次运行程序完全可以运行,第二次运行后,弹出以下提示。

WPF 只允许运行一个程序(单例)(转)



其它方法:

1.通过查找process的方法来控制应用程序启动。

PS:这个方法有bug:在多用户登录后,只有一个用户可以正常启动程序,也就是说,进程是跨用户的。

[java] view plain copy
  1. int processCount = Process.GetProcessesByName("windowWPF").Where(o => o.Id != Process.GetCurrentProcess().Id).Count();  
  2. if (processCount > 1)  
  3.     Environment.Exit(0);  

2. 注意mutex不能被回收,否则就无法发挥作用了。

[java] view plain copy
  1. bool ret;    
  2. using (System.Threading.Mutex  mutex = new System.Threading.Mutex(true"WpfMuerterrrterterttex", out ret))    
  3. {    
  4.     if (!ret)    
  5.         Environment.Exit(0);    
  6. }