using System; using System.Collections.Generic; using System.Windows.Forms; // TODO: Do we need to add tool strip button support to the FileDocument manager? namespace DocApp { static class Program { /// /// The main entry point for the application. /// [STAThread] static void Main(string[] args) { Application.EnableVisualStyles(); SingleMDIApplication.Application.Run(args); } } }