您的位置:首页 > 编程语言 > C#

C#再次打开程序时,如何弹出已运行界面?

2016-04-08 23:45 1216 查看
如果不对程序的线程处理,每次打开程序都会弹出界面,怎样在第二次打开的时候检测下是否该程序已程序呢

通过下面的方法可以实现(已测试):

首先,打开Program.cs文件,下面的代码是程序原来的代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
using System.Text;
namespace MyApplication
{
static class Program
{
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new FrmMain());

}
public static Process RunningInstance()
{
throw new NotImplementedException();
}

}
}


然后添加API和线程程序,添加后的program.cs代码如下所示:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
using System.Text;
using System.Runtime.InteropServices;
using System.Diagnostics;
using System.Reflection;

namespace MyApplication

{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]

/// 该函数设置由不同线程产生的窗口的显示状态
/// </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;

static void Main()
{
Process process = RunningInstance();
if (process != null)
{
//MessageBox.Show("应用程序已经在运行中。。。");
HandleRunningInstance(process);
//System.Threading.Thread.Sleep(1000);
System.Environment.Exit(1);
}

Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new FrmMain());	//这里修改成主界面的Form名

}
private static void HandleRunningInstance(Process instance)
{
ShowWindowAsync(instance.MainWindowHandle, SW_SHOWNOMAL);   //显示
SetForegroundWindow(instance.MainWindowHandle); //当到最前端
}
public static Process RunningInstance()
{
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;
throw new NotImplementedException();
}

}
}

(如果临时急用,可以直接拷贝过去用,注意修改下form名)

其中要添加如下引用:

using System.Runtime.InteropServices;
using System.Diagnostics;
using System.Reflection;


来自:http://blog.csdn.net/u011981242/article/details/51100661
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: