using System; using System.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; using System.Windows.Forms; namespace lyfzAttendance { static class Program { /// /// 应用程序的主入口点。 /// [STAThread] static void Main() { Controller.LogHelper.LogInfo(typeof(Program), "启动铂金版指纹机程序"); Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); //Application.Run(new frmMain()); #region 单例模式运行 bool create; using (Mutex mu = new Mutex(true, Application.ProductName, out create)) { try { if (create) { Application.Run(new frmMain()); } else { MessageBox.Show("程序已经在运行!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information); System.Environment.Exit(0); return; } } catch { } } #endregion } } }