摘要: 阅读全文
posted @ 2013-11-29 09:44 sun控制 阅读(120) 评论(0) 推荐(0)
摘要: 我介绍两个主流的方法。方法一:使用Mutex来进行1. 首先要添加如下的namespace:using System.Threading;2. 修改系统Main函数,大致如下: bool bCreatedNew; //Create a new mutex using specific mutex name Mutex m =new Mutex( false, "myUniqueName", out bCreatedNew ); if( bCreatedNew ) Application.Run(new yourFor... 阅读全文
posted @ 2013-11-13 15:23 sun控制 阅读(153) 评论(0) 推荐(0)
摘要: 拷贝构造函数 阅读全文
posted @ 2013-11-08 15:55 sun控制 阅读(83) 评论(0) 推荐(0)
摘要: 1 安装2 修改更新源: sudo cp gedit /etc/apt/sources.list /etc/apt/sources.list_backup sudo gedit /etc/apt/sources.list sudo apt-get update3 中文支持: system->admin->language support IBus Perferences->input method add4 设置输入法,开机启动 Name: IBus daemon Command: /usr/bin/ibus-daemon -d Comment: start I... 阅读全文
posted @ 2013-11-07 15:45 sun控制 阅读(165) 评论(0) 推荐(0)