- namespace ServiceLauncher
- {
- static class Program
- {
- public static Form1 mainFormRef;
- /// <summary>
- /// 应用程序的主入口点。
- /// </summary>
- [STAThread]
- static void Main()
- {
- Application.EnableVisualStyles();
- Application.SetCompatibleTextRenderingDefault(false);
- mainFormRef = new Form1();
- Application.Run(mainFormRef);
- }
- }
- }