激活程序進程並顯示最前

  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;
            }
相關文章
相關標籤/搜索