C# 只运行一个窗口实例 弹出已打开最小化在任务栏的程序

using System;
using System.Diagnostics;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Windows.Forms;

namespace DataChange
{
    static class Program
    {
        /// 
        /// 该函数设置由不同线程产生的窗口的显示状态
        /// 
        /// 窗口句柄
        /// 指定窗口如何显示。查看允许值列表,请查阅ShowWlndow函数的说明部分
        /// 如果函数原来可见,返回值为非零;如果函数原来被隐藏,返回值为零
        [DllImport("User32.dll")]
        private static extern bool ShowWindowAsync(IntPtr hWnd, int cmdShow);


        ///     
        ///  该函数将创建指定窗口的线程设置到前台,并且激活该窗口。键盘输入转向该窗口,并为用户改各种可视的记号。    
        ///  系统给创建前台窗口的线程分配的权限稍高于其他线程。     
        ///     
        /// 将被激活并被调入前台的窗口句柄    
        /// 如果窗口设入了前台,返回值为非零;如果窗口未被设入前台,返回值为零    
        [DllImport("User32.dll")]
        private static extern bool SetForegroundWindow(IntPtr hWnd);
        private const int SwShownomal = 1;


        /// 
        /// 应用程序的主入口点。
        /// 
        [STAThread]
        static void Main()
        {
            var process = RunningInstance();
            if (process != null)
            {
                HandleRunningInstance(process); 
                Environment.Exit(1);
            }


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


        /// 
        /// 展示实例
        /// 
        /// 
        private static void HandleRunningInstance(Process instance)
        {
            ShowWindowAsync(instance.MainWindowHandle, SwShownomal);   //显示    
            SetForegroundWindow(instance.MainWindowHandle); //当到最前端    
        }


        /// 
        /// 获取当前运行的实例
        /// 
        /// 
        public static Process RunningInstance()
        {
            var currentProcess = Process.GetCurrentProcess();
            var processes = Process.GetProcessesByName(currentProcess.ProcessName);
            foreach (var process in processes)
            {
                if (process.Id == currentProcess.Id) continue;
                if (Assembly.GetExecutingAssembly().Location.Replace("/", "\\") == currentProcess.MainModule.FileName)
                {
                    return process;
                }
            }
            return null;
        }
    }
}

 

你可能感兴趣的:(C#)