如何防止多次打开我的应用程序? [英] How to prevent open my application more than one time?

查看:74
本文介绍了如何防止多次打开我的应用程序?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

可能重复:
创建单个实例的正确方法是什么申请吗?

Possible Duplicate:
What is the correct way to create a single instance application?

如何反复定义我的应用程序,将其定义为只打开一次该应用程序?

How can I define my application to open only one time after click on its exe file over and over?

推荐答案

我一直在应用程序的入口点执行此操作:

I've always done this at the application's entry point:

bool onlyInstance = false;

Mutex m = new Mutex(true, "MyUniqueMutextName", out onlyInstance);
if (!onlyInstance)
{
    return;
}

GC.KeepAlive(m);

这篇关于如何防止多次打开我的应用程序?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆