WEB开发网
开发学院手机开发Windows Mobile 开发 Windows mobile 防止程序重复运行的实现 阅读

Windows mobile 防止程序重复运行的实现

 2010-03-24 16:04:00 来源:WEB开发网   
核心提示:以下C#代码,可以实现windows mobile防止程序重复运行:class Program{/// /// 应用程序的主入口点,Windows mobile 防止程序重复运行的实现,/// [MTAThread]static void Main(){bool createdNew;Mutex mutex = new

以下C#代码,可以实现windows mobile防止程序重复运行:

class Program

{

///

/// 应用程序的主入口点。

///

[MTAThread]

static void Main()

{

bool createdNew;

Mutex mutex = new Mutex(true);

createdNew = mutex.WaitOne(0, false);

if (createdNew)

{

//Application.EnableVisualStyles();

//Application.SetCompatibleTextRenderingDefault(false);

Application.Run(new frm_MainMenu());

mutex.ReleaseMutex();

}

}

}

}

Tags:Windows mobile 防止

编辑录入:coldstar [复制链接] [打 印]
赞助商链接