Program.cs 972 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading;
  5. using System.Threading.Tasks;
  6. using System.Windows.Forms;
  7. namespace lyfzAttendance
  8. {
  9. static class Program
  10. {
  11. /// <summary>
  12. /// 应用程序的主入口点。
  13. /// </summary>
  14. [STAThread]
  15. static void Main()
  16. {
  17. Controller.LogHelper.LogInfo(typeof(Program), "启动铂金版指纹机程序");
  18. Application.EnableVisualStyles();
  19. Application.SetCompatibleTextRenderingDefault(false);
  20. //Application.Run(new frmMain());
  21. #region 单例模式运行
  22. bool create;
  23. using (Mutex mu = new Mutex(true, Application.ProductName, out create))
  24. {
  25. try
  26. {
  27. if (create)
  28. {
  29. Application.Run(new frmMain());
  30. }
  31. else
  32. {
  33. MessageBox.Show("程序已经在运行!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
  34. System.Environment.Exit(0);
  35. return;
  36. }
  37. }
  38. catch { }
  39. }
  40. #endregion
  41. }
  42. }
  43. }