C# winform 启动单个实例(限制同一台电脑打开多个程序)

问题:

采用C#进行程序开发发包后,多次点击exe程序,会打开多个程序。

解决方式

现在需要实现:C# Winform 窗体程序只启动一个,多次启动,激活窗体,并置于最前端功能。
程序点击运行第二次自动判断显示,解决不重复打开两个相同窗体功能。
具体实现代码如下:

    static class Program
    {
        /// 
        /// 应用程序的主入口点。
        /// 
        [STAThread]
        static void Main()
        {
            if (RunningInstance())
            {
                return;
            }

            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Main());
        }

        public static bool RunningInstance()
        {
            // 判断进程,只能启动一个实例
            Process current = Process.GetCurrentProcess();
            var p = Process.GetProcessesByName(current.ProcessName).FirstOrDefault(x => x.Id != current.Id);
            if (p != null)
            {
                SetForegroundWindow(p.MainWindowHandle);
                SendMessage(p.MainWindowHandle, WM_SYSCOMMAND, SC_RESTORE, 0);
                return true;
            }

            return false;
        }

        [DllImport("user32.dll", EntryPoint = "SetForegroundWindow")]
        public static extern int SetForegroundWindow(IntPtr hwnd);
        [DllImport("user32.dll", EntryPoint = "SendMessage")]
        public static extern int SendMessage(IntPtr hwnd, int wMsg, int wParam, int lParam);
        public const int WM_SYSCOMMAND = 0x112;
        public const int SC_RESTORE = 0xF120;
    }

你可能感兴趣的:(工具,C#后端代码记录,core,c#,开发语言)