您好,
假设我们在后台运行了一个WinForm应用程序(app1),现在另一个应用程序(app2)(最顶层的活动应用程序)触发了一个带有app1的startProcess。
现在我需要app1使用现有实例并将其带到最顶层的应用程序(不仅仅是在app1应用程序中)。
我找到了这个:http://sanity-free.org/143/csharp_dotnet_single_instance_application.html
没有API,它是不是可以做到这一点?我看过attToFront,Activate和Focus,但所有这些似乎只在一个应用程序中而不是在应用程序之间产生?
答案 0 :(得分:2)
我不知道你的意思是“没有API”或者为什么重要。
然而,最简单的方法是通过WindowsFormsApplicationBase
。只需几行代码,它就能满足您的所有需求。
您需要添加对Microsoft.VisualBasic
程序集的引用 - 但它可以通过C#使用。
上课:
public class SingleInstanceApplication : WindowsFormsApplicationBase
{
private SingleInstanceApplication()
{
IsSingleInstance = true;
}
public static void Run(Form form)
{
var app = new SingleInstanceApplication
{
MainForm = form
};
app.StartupNextInstance += (s, e) => e.BringToForeground = true;
app.Run(Environment.GetCommandLineArgs());
}
}
在Program.cs中,更改运行行以使用它:
//Application.Run(new Form1());
SingleInstanceApplication.Run(new Form1());
答案 1 :(得分:0)
您确实需要在两个应用之间进行某种通信。在文章中链接到您发布的通信是通过WinApi消息。您也可以通过套接字或文件和FileWatchers来实现。
UPD1: 使用来自其他应用程序的计时器模拟消息模拟最小化的代码,并最大化该消息:
public partial class Form1 : Form
{
private Timer _timer = null;
public Form1()
{
InitializeComponent();
this.Load += OnFormLoad;
}
private void OnFormLoad(object sender, EventArgs e)
{
Button btn = new Button();
btn.Text = "Hide and top most on timer";
btn.Width = 200;
btn.Click += OnButtonClick;
this.Controls.Add(btn);
}
private void OnButtonClick(object sender, EventArgs e)
{
//minimize app to task bar
WindowState = FormWindowState.Minimized;
//timer to simulate message from another app
_timer = new Timer();
//time after wich form will be maximize
_timer.Interval = 2000;
_timer.Tick += new EventHandler(OnTimerTick);
_timer.Start();
}
private void OnTimerTick(object sender, EventArgs e)
{
_timer.Stop();
//message from another app came - we should
WindowState = FormWindowState.Normal;
TopMost = true;
}
}