private const int SW_SHOWNOMAL = 1; ///<summary> /// 该函数设置由不同线程产生的窗口的显示状态 /// </summary> /// <param name="hWnd">窗口句柄</param> /// <param name="cmdShow">指定窗口如何显示。查看允许值列表,请查阅ShowWlndow函数的说明部分</param> /// <returns>如果函数原来可见,返回值为非零;如果函数原来被隐藏,返回值为零</returns> [DllImport("User32.dll")] private static extern bool ShowWindowAsync(IntPtr hWnd, int cmdShow); /// <summary> /// 该函数将创建指定窗口的线程设置到前台,并且激活该窗口。键盘输入转向该窗口,并为用户改各种可视的记号。 /// 系统给创建前台窗口的线程分配的权限稍高于其他线程。 /// </summary> /// <param name="hWnd">将被激活并被调入前台的窗口句柄</param> /// <returns>如果窗口设入了前台,返回值为非零;如果窗口未被设入前台,返回值为零</returns> [DllImport("User32.dll")] private static extern bool SetForegroundWindow(IntPtr hWnd); [DllImport("user32.dll")] public static extern void SwitchToThisWindow(IntPtr hWnd, bool fAltTab);
bool bCreatedNew = false; Mutex mutex = new Mutex(true, "sc", out bCreatedNew); if (!bCreatedNew) { Process[] sz = Process.GetProcessesByName(Process.GetCurrentProcess().ProcessName); foreach (var item in sz) { if (item.Id != Process.GetCurrentProcess().Id) { ShowWindowAsync(item.MainWindowHandle, SW_SHOWNOMAL);//显示 // SetForegroundWindow(item.MainWindowHandle);//当到最前端 SwitchToThisWindow(item.MainWindowHandle, true); // 激活,显示在最前 } } // MessageBox.Show("dddd:" + Process.GetCurrentProcess().ProcessName); return; }