using System; using System.Collections.Generic; using System.Windows.Forms; namespace Tutorial2.WinUI { static class Program { /// /// The main entry point for the application. /// [STAThread] static void Main() { System.Windows.Forms.Application.EnableVisualStyles(); System.Windows.Forms.Application.SetCompatibleTextRenderingDefault(false); System.Windows.Forms.Application.Run(new Login()); } } }