需求:winform应用程序,当隐藏到托盘时,再次运行exe程序,让其只运行一个实例,并且把窗口从托盘中显示出来
应用程序名可以通过下面代码,获取到:
Process current = Process.GetCurrentProcess();
strProcessName = current.ProcessName;static class Program { private static string strProcessName = "Form1" ; private static string strAppName = "WindowsFormsApplication1"; static int hWnd = 0; const int SW_SHOW = 5; [DllImport("user32.dll", EntryPoint = "ShowWindow")] public static extern int ShowWindow(int hwnd, int nCmdShow); [DllImport("user32")] public static extern int GetWindowText(int hWnd, StringBuilder lpString, int nMaxCount); [DllImport("user32")] public static extern int EnumWindows(CallBack x, int y); public delegate bool CallBack(int hWnd, int lParam); ////// 应用程序的主入口点。 /// [STAThread] static void Main() { Process[] ps = Process.GetProcessesByName(strAppName); CallBack myCallBack = new CallBack(FineAppWindow); EnumWindows(myCallBack, 0); if (ps.Length > 1) { ShowWindow(hWnd, SW_SHOW); return; } else { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1()); } } public static bool FineAppWindow(int hwnd, int lParam) { StringBuilder sb = new StringBuilder(200); int n = GetWindowText(hwnd, sb, 200); //获取winform的title 与 strProcessName比较 if (sb.ToString() == strProcessName) { hWnd = hwnd; } return true; } }
下面这种方法,只能在最小化的时候让其显示出来,不能在托盘时显示出来:
static class Program { //防止程序运行多个实例的方法有多种,如:通过使用互斥量和进程名等.而我想要实现的是:在程序运行多个实例时激活的是第一个实例,使其获得焦点,并在前端显示. //主要用到两个API 函数: //ShowWindowAsync 该函数设置由不同线程产生的窗口的显示状态。 //SetForegroundWindow 该函数将创建指定窗口的线程设置到前台,并且激活该窗口。键盘输入转向该窗口,并为用户改各种可视的记号。系统给创建前台窗口的线程分配的权限稍高于其他线程。 ////// 该函数设置由不同线程产生的窗口的显示状态。 /// /// 窗口句柄 /// 指定窗口如何显示。查看允许值列表,请查阅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 WS_SHOWNORMAL = 1; ////// 应用程序的主入口点。 /// [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Process instance = RunningInstance(); if (instance == null) { Application.Run(new FrmLed()); } else { HandleRunningInstance(instance); } } ////// 获取正在运行的实例,没有运行的实例返回null; /// public static Process RunningInstance() { Process current = Process.GetCurrentProcess(); Process[] processes = Process.GetProcessesByName(current.ProcessName); foreach (Process process in processes) { if (process.Id != current.Id) { if (Assembly.GetExecutingAssembly().Location.Replace("/", "\\") == current.MainModule.FileName) { return process; } } } return null; } ////// 显示已运行的程序。 /// public static void HandleRunningInstance(Process instance) { //MessageBox.Show("ID:"+instance.Id .ToString()+"--句柄"+instance.MainWindowHandle.ToString() + "--正常窗口" + WS_SHOWNORMAL + "--" + ShowWindowAsync(instance.MainWindowHandle, WS_SHOWNORMAL) + "--" + SetForegroundWindow(instance.MainWindowHandle)); ShowWindowAsync(instance.MainWindowHandle, WS_SHOWNORMAL); //显示,可以注释掉 SetForegroundWindow(instance.MainWindowHandle); //放到前端 } }