C# winform 应用程序只打开一次(实现)(zhuan)

https://blog.csdn.net/chenhailong118/article/details/84081922

winform 有的时候只能打开一次,下一次不要打开的应用

 

下面是code

 

 static class ApplicationStart
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main()
        {
            bool ExisFlag = false;
            System.Diagnostics.Process currentProccess = System.Diagnostics.Process.GetCurrentProcess();
            System.Diagnostics.Process[] currentProccessArray = System.Diagnostics.Process.GetProcesses();
            foreach (System.Diagnostics.Process p in currentProccessArray)
            {
                if (p.ProcessName == currentProccess.ProcessName && p.Id != currentProccess.Id)
                {
                    ExisFlag = true;
                }
            }

            if (ExisFlag)
            {
                return;
            }
            else
            {
                Application.EnableVisualStyles();
                Application.SetCompatibleTextRenderingDefault(false);
                Application.Run(new ModelFileGenerator.View.×××());
            }
        }
    }

 

上面是第一种方案

 

在来看看第二种方案

 

 

/// <summary>
        /// window form show count
        /// </summary>
        private const int WS_SHOWNORMAL = 1;

        [DllImport("User32.dll")]
        private static extern bool ShowWindowAsync(IntPtr hWnd, int cmdShow);
        [DllImport("User32.dll")]
        private static extern bool SetForegroundWindow(IntPtr hWnd);
        [DllImport("kernel32.dll")]
        private static extern IntPtr LoadLibrary(string sLibName);

        /// <summary>
        /// application start
        /// </summary>
        public static void ApplicationStart()
        {
            Process instance = RunningInstance();
            if (instance == null)
            {
                System.Windows.Forms.Application.EnableVisualStyles();
                System.Windows.Forms.Application.SetCompatibleTextRenderingDefault(false);
                Application.Run(new ×××());
            }
            else
            {
                HandleRunningInstance(instance);
            }
        }

        /// <summary>
        /// application repeat start
        /// </summary>
        public static void ApplicationRepeatStart()
        {
            Process instance = RunningInstance();
            if (instance != null)
            {
                HandleRunningInstance(instance);
            }
        }

        /// <summary>
        /// Running process instance
        /// </summary>
        /// <returns>the running process</returns>
        public static Process RunningInstance()
        {
            Process current = Process.GetCurrentProcess();
            Process[] processes = Process.GetProcessesByName(current.ProcessName);
            Loop through the running processes in with the same name
            foreach (Process process in processes)
            {
                Ignore the current process
                if (process.Id != current.Id)
                {
                    Make sure that the process is running from the exe file.
                    if (Assembly.GetExecutingAssembly().Location.Replace("/", "\\") == current.MainModule.FileName)
                    {
                        Return the other process instance.
                        return process;
                    }
                }
            }
            No other instance was found, return null.
            return null;
        }

        /// <summary>
        /// handle running instance
        /// </summary>
        /// <param name="instance">the running process</param>
        public static void HandleRunningInstance(Process instance)
        {
            Make sure the window is not minimized or maximized
            ShowWindowAsync(instance.MainWindowHandle, WS_SHOWNORMAL);
            Set the real instance to foreground window
            SetForegroundWindow(instance.MainWindowHandle);
        }

 Main函数

 
  1. public const string APP_NAME = "×××";

  2. private static bool isFirstAppInstance = true;

  3. private static Mutex mutex = new Mutex(true, APP_NAME, out isFirstAppInstance);

  4. /// <summary>

  5. /// The main entry point for the application.

  6. /// </summary>

  7. [STAThread]

  8. static void Main()

  9. {

  10. if (isFirstAppInstance)

  11. {

  12. ApplicationManagerUtil.ApplicationStart();

  13. }

  14. else

  15. {

  16. ApplicationManagerUtil.ApplicationRepeatStart();

  17. }

  18.  
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值