本文实例讲述了C#使用Mutex简单实现程序单实例运行的方法。分享给大家供大家参考。具体如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | [STAThread] static void Main() { bool isAppRunning = false ; System.Threading.Mutex mutex = new System.Threading.Mutex( true ,System.Diagnostics.Process.GetCurrentProcess().ProcessName, out isAppRunning); if (!isAppRunning) { MessageBox.Show( "本程序已经在运行了,请不要重复运行!" ); Environment.Exit(1); } else { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault( false ); Application.Run( new Form1()); } } |
希望本文所述对大家的C#程序设计有所帮助。