using System; using System.Collections.Generic; using System.Windows.Forms; namespace Dachie { static class Program { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); bool createNew; System.Threading.Mutex mutex = new System.Threading.Mutex(true, Application.ProductName, out createNew); if (createNew) Application.Run(new login()); } } }
作者:达奇
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。