标签:style blog class code java tar
static class Program { public static System.Threading.Mutex Run; /// <summary> /// 应用程序的主入口点。 /// </summary> [STAThread] static void Main() { bool noRun = false; Run = new System.Threading.Mutex(true, "HumControl", out noRun); //检测是否已经运行 if (noRun) {//未运行 Run.ReleaseMutex(); Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new FrmLogin()); } else {//已经运行 //MessageBox.Show("已经有一个实例正在运行!"); //切换到已打开的实例 } } Program.Run.Close();//关闭现在程序 Application.Restart(); //重启程序 Form f = new FrmLogin(); f.ShowDialog();
标签:style blog class code java tar
原文地址:http://www.cnblogs.com/vaejp/p/3714094.html