Example #1
0
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            // Starting App Context and start the app inside it.
            SpreadsheetFormContext appContext = SpreadsheetFormContext.GetFormContext();

            appContext.RunForm(new SpreadsheetForm());

            Application.Run(appContext);
        }