Ejemplo n.º 1
0
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            var         context = FileAnalysisApplicationContext.GetContext();
            Spreadsheet sheet   = new Spreadsheet();

            FileAnalysisApplicationContext.GetContext().RunNew(sheet);
            Application.Run(context);
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Opens a new Analysis window.
 /// </summary>
 public void OpenNew(Spreadsheet sheet)
 {
     //Spreadsheet sheet = new Spreadsheet();
     FileAnalysisApplicationContext.GetContext().RunNew(sheet);
 }