您好,登錄后才能下訂單哦!
有一些應用,我們不希望被用戶多次打開。那么我們需要在應用的入口做一些處理。我把我應用里的代碼貼出來。
1、如果只是需要,發現已經打開的時候,直接退出的話,用下面的代碼:
static void Main() { #region 防止多開 Process CurProc = Process.GetCurrentProcess(); Process[] Procs = Process.GetProcessesByName(CurProc.ProcessName.Replace(".vshost", string.Empty)); if (Procs.Length > 1) { MessageBox.Show("應用已打開", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information); return; } #endregion Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1()); }
相當于在Main函數的開始部分,判斷一下是否已經有相同進程,有的話,直接退出。
2、如果發現已經打開的話,退出當前進程,并且切換激活到前面打開的進程。那么需要用user32.dll庫文件里的函數。
#region 防止多開 Process CurProc = Process.GetCurrentProcess(); Process[] Procs = Process.GetProcessesByName(CurProc.ProcessName.Replace(".vshost", string.Empty)); if (Procs.Length > 1) { foreach (Process proc in Procs) { if (proc.Id != CurProc.Id) { if (proc.MainWindowHandle.ToInt32() == 0) { // 獲得窗體句柄 formhwnd = FindWindow(null, "PictureManager"); // 重新顯示該窗體并切換到帶入到前臺 ShowWindow(formhwnd, SW_RESTORE); SwitchToThisWindow(formhwnd, true); } else { // 如果窗體沒有隱藏,就直接切換到該窗體并帶入到前臺 // 因為窗體除了隱藏到托盤,還可以最小化 SwitchToThisWindow(proc.MainWindowHandle, true); } } } return; } #endregion
里面用到的幾個函數需要用到user32.dll庫文件。需要引用一下。
#region 方法四:使用的Win32函數的聲明 /// <summary> /// 找到某個窗口與給出的類別名和窗口名相同窗口 /// 非托管定義為:http://msdn.microsoft.com/en-us/library/windows/desktop/ms633499(v=vs.85).aspx /// </summary> /// <param name="lpClassName">類別名</param> /// <param name="lpWindowName">窗口名</param> /// <returns>成功找到返回窗口句柄,否則返回null</returns> [DllImport("user32.dll")] public static extern IntPtr FindWindow(string lpClassName, string lpWindowName); /// <summary> /// 切換到窗口并把窗口設入前臺,類似 SetForegroundWindow方法的功能 /// </summary> /// <param name="hWnd">窗口句柄</param> /// <param name="fAltTab">True代表窗口正在通過Alt/Ctrl +Tab被切換</param> [DllImport("user32.dll ", SetLastError = true)] static extern void SwitchToThisWindow(IntPtr hWnd, bool fAltTab); ///// <summary> ///// 設置窗口的顯示狀態 ///// Win32 函數定義為:http://msdn.microsoft.com/en-us/library/windows/desktop/ms633548(v=vs.85).aspx ///// </summary> ///// <param name="hWnd">窗口句柄</param> ///// <param name="cmdShow">指示窗口如何被顯示</param> ///// <returns>如果窗體之前是可見,返回值為非零;如果窗體之前被隱藏,返回值為零</returns> [DllImport("user32.dll", EntryPoint = "ShowWindow", CharSet = CharSet.Auto)] public static extern int ShowWindow(IntPtr hwnd, int nCmdShow); public const int SW_RESTORE = 9; public static IntPtr formhwnd; #endregion /// <summary>
注:用到user32.dll里面的函數以后,在用InstallShield Limited Edition制作安裝包的時候,會報錯,提示你添加user32.dll,目前我還沒有解決。所以現在是直接用方法1。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。