本文主要是介绍不可多开程序的代码,只能启动一个程序_控控控-上ke控_新浪博客,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
判断一下进程,再调一下API,将已经运行的进程前置就可以了
例如:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
using System.Diagnostics;
using System.Runtime.InteropServices;
namespace _415_Calculator
{
static class Program
{
[DllImport("user32.dll")]
private static extern bool SetForegroundWindow(IntPtr hWnd); ///
///
/// 应用程序的主入口点。
///
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Process proc = Process.GetCurrentProcess();
Process[] processes = Process.GetProcessesByName(proc.ProcessName);
if (processes.Length > 1)
{
MessageBox.Show("程序已经运行");
foreach (Process pro in processes)
{
SetForegroundWindow(pro.MainWindowHandle);
}
}
else
{
Application.Run(new Form1());
}
}
}
}
这篇关于不可多开程序的代码,只能启动一个程序_控控控-上ke控_新浪博客的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!