#region Using directives using System; using System.Collections.Generic; using System.Windows.Forms; #endregion namespace SingleMDISample { static class Program { /// /// The main entry point for the application. /// [STAThread] static void Main(string[] args) { // The following is handled internally by // WindowsFormsApplicationBase: // Application.Run(new MDIChildForm()); Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); SingleMDIApplication.Application.Run(args); } } }