最近在做winform的程式中,需要只能開啟一個程式,如果已經存在,則啟用該程式的視窗,並顯示在最前端。在網上google了一哈,找到了很多的解決方案。這裡我整理了3種方案,並經過了測試,現和朋友們分享:
一、使用用互斥量(System.Threading.Mutex)
同步基元,它只向一個線程授予對共用資源的獨佔訪問權。在程式啟動時候,請求一個互斥體,如果能擷取對指定互斥的訪問權,就職運行一個執行個體。
代碼
bool createNew;
using (System.Threading.Mutex mutex = new System.Threading.Mutex(true, Application.ProductName, out createNew))
{
if (createNew)
{
Application.Run(new Form1());
}
else
{
MessageBox.Show("應用程式已經在運行中...") System.Threading.Thread.Sleep(1000);
System.Environment.Exit(1);
}
}
二、使用進程名
代碼
Process[] processes = System.Diagnostics.Process.GetProcessesByName(Application.CompanyName);
if (processes.Length > 1)
{
MessageBox.Show("應用程式已經在運行中。。");
Thread.Sleep(1000);
System.Environment.Exit(1);
}
else
{
Application.Run(new Form1());
}
三、調用Win32 API,並啟用並程式的視窗,顯示在最前端
代碼
/// 該函數設定由不同線程產生的視窗的顯示狀態
/// </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);
代碼
private const int SW_SHOWNOMAL = 1;
private static void HandleRunningInstance(Process instance)
{
ShowWindowAsync(instance.MainWindowHandle, SW_SHOWNOMAL);//顯示
SetForegroundWindow(instance.MainWindowHandle);//當到最前端
}
private static Process RuningInstance()
{
Process currentProcess = Process.GetCurrentProcess();
Process[] Processes = Process.GetProcessesByName(currentProcess.ProcessName);
foreach (Process process in Processes)
{
if (process.Id != currentProcess.Id)
{
if (Assembly.GetExecutingAssembly().Location.Replace("/", "\\") == currentProcess.MainModule.FileName)
{
return process;
}
}
}
return null;
}
代碼
Process process = RuningInstance();
if (process == null)
{
Application.Run(new Form1());
}
else
{
MessageBox.Show("應用程式已經在運行中。。。"); HandleRunningInstance(process);
//System.Threading.Thread.Sleep(1000);
//System.Environment.Exit(1);
}
這裡整理了三種方案,希望朋友們提出更多的解決方案。謝謝!
Best Regards,
Charles Chen