1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- 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
- {
- /// <summary>
- /// 应用程序的主入口点。
- /// </summary>
- [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
- }
- }
- }
|