摘要: 先来看第一种最简单粗暴的做法:检测进程名,如果名称一样,则表示程序已经启动了,就不再启动. protected override void OnStartup(StartupEventArgs e) { // Get Reference to the current Process Process thisProc = Process.GetCurrentProcess(); // Check how many total processes have the same name as the current one if (Pro... 阅读全文
posted @ 2012-04-23 00:07 William Jiang 阅读(564) 评论(0) 推荐(0) 编辑