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

时间:2021-06-15 16:15:28   收藏:0   阅读:19

https://blog.csdn.net/shikong_/article/details/77047235

 

App.xaml.cs 文件:

     namespace ElectronicNeedleTherapySystem  
    {  
        /// <summary>  
        /// App.xaml 的交互逻辑  
        /// </summary>  
        public partial class App : Application  
        {  
            System.Threading.Mutex mutex;  
      
            public App()  
            {  
                this.Startup += new StartupEventHandler(App_Startup);  
            }  
      
            void App_Startup(object sender, StartupEventArgs e)  
            {  
                bool ret;  
                mutex = new System.Threading.Mutex(true, "ElectronicNeedleTherapySystem", out ret);  
      
                if (!ret)  
                {  
                    MessageBox.Show("已有一个程序实例运行");  
                    Environment.Exit(0);  
                }  
      
            }  
        }  
    }  

 

原文:https://www.cnblogs.com/Mars-0603/p/14884299.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!