摘要: //program.cs static class Program { /// /// 应用程序的主入口点。 /// [STAThread] static void Main() { bool ret = false; System.Threading.Mutex running = new System.Threading.Mutex(true, Application.ProductName, out ret); if (ret) { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefa.. 阅读全文
posted @ 2013-09-17 09:03 teyond 阅读(374) 评论(0) 推荐(0) 编辑