码迷,mamicode.com
首页 > Windows程序 > 详细

WPF学习笔记 - 如何用WPF创建单实例应用程序

时间:2015-03-06 12:23:30      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:

使用一个已命名的(操作系统范围的)互斥量。

bool mutexIsNew;

using(System.Threading.Mutex m = new System.Threading.Mulex(true, uniqueName, out mutexIsNew))

{

    if(mutexIsNew)

    {

        //This is the first instance, can run the appliacation

    }

    else

    {

        //There is an instance running, exit.     }

}

因为是操作系统范围的,所以需要确定参数uniqueName指定的名字不会被其他应用程序使用。

 

http://blog.csdn.net/cs_oldhorse/article/details/6803569

WPF学习笔记 - 如何用WPF创建单实例应用程序

标签:

原文地址:http://www.cnblogs.com/tianciliangen/p/4317746.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!