摘要:
置serviceProcessInstaller1控件的Account属性为“LocalSystem” 设置serviceInstaller1控件的StartType属性为"Automatic" 在private void ProjectInstaller_AfterInstall(object s 阅读全文
摘要:
从注册表中读取默认浏览器可执行文件路径 调用IE浏览器 调用系统默认的浏览器 阅读全文
摘要:
转载自:http://www.cnblogs.com/over140/category/172369.html 视频监控的分屏技术实际上就是通过动态Panel + 动态指定其Location和Size来实现的,还需要一个计算分屏数目的算法。 动态Panel: 分屏算法: 优化后的: 阅读全文
摘要:
exp: 阅读全文
摘要:
//在程序的main函数中加入以下代码 bool createdNew; System.Threading.Mutex instance = new System.Threading.Mutex(true, "MutexName", out createdNew); if (createdNew) { Application.Run(new LoginForm()); i... 阅读全文