如何防止表单再次打开。我创建了我的应用程序并安装了它,但是当我再次单击该图标时,应用程序再次打开,依此类推,如果我再次单击该图标,我该如何防止?
答案 0 :(得分:5)
斯科特·汉塞尔曼(Scott Hanselman)在这段时间做了一个很好的帖子 - 这是link
答案 1 :(得分:2)
尝试Mutex。这是一篇关于这个主题的好文章:
http://odetocode.com/Blogs/scott/archive/2004/08/20/401.aspx
[STAThread]
static void Main()
{
using(Mutex mutex = new Mutex(false, "Global\\" + appGuid))
{
if(!mutex.WaitOne(0, false))
{
MessageBox.Show("Instance already running");
return;
}
Application.Run(new Form1());
}
}
答案 2 :(得分:1)
您可以通过检查当前正在运行的进程列表来执行此操作。 如果它是重复的,则杀死自己。 这将阻止多个实例。
Process[] pArry = Process.GetProcesses(); //Get Currently Running Processes
int Instance_Counter = 0; // To count No. of Instances
foreach (Process p in pArry)
{
string ProcessName = p.ProcessName;
//Match the Process Name with Current Process (i.e. Check Duplication )
//If So Kill self
if(ProcessName == Process.GetCurrentProcess().ProcessName)
{
Instance_Counter++;
}
}
if(Instance_Counter>1)
{
//Show Error and Kill Yourself
}
答案 3 :(得分:0)
这不是最好的方法,而是Swanand Purankar的固定方法,如前所述:
//I set Timer's interval to "250", it's personal
//Just don't forget to enable the timer
private void timer1_Tick(object sender, EventArgs e)
{
var self = Process.GetCurrentProcess();
foreach (var proc in Process.GetProcessesByName(self.ProcessName))
{
if (proc.Id != self.Id)
{
proc.Kill();
}
}
}
但是,通过这种方式,您无法设置错误。如果你想要:
private void Form1_Load(object sender, EventArgs e)
{
if (Process.GetProcessesByName(Process.GetCurrentProcess().ProcessName).Length > 1)
{
MessageBox.Show("Hey there opening multiple instances of this process is restricted!", "Error",
MessageBoxButtons.OK, MessageBoxIcon.Error);
this.Close();
}
}
但是,用户可以通过重命名程序轻松传递此信息。使用注册表可以帮助。但是黑客/开发者仍然可以摆脱这种情况。通过使用过程监视器。