コード例 #1
0
ファイル: UiMain.cs プロジェクト: bergmannf/OposParser
 public static void Main(string[] args)
 {
     Console.WriteLine ("Starting UI");
                 Application.Init ();
                 ISpreadSheetData ds = null;
                 try {
                         ds = new ExcelInterop.ExcelDatasource ();
                 } catch {
                         ds = null;
                 }
                 OposParserFacade parser = new OposParserFacade (ds);
                 MainWindowModel model = new MainWindowModel (parser);
                 MainWindow view = new MainWindow ();
                 MainWindowController controller = new MainWindowController (view, model);
                 view.Show ();
                 Application.Run ();
 }
コード例 #2
0
 public MainWindowModel(OposParserFacade parser)
 {
     this.Parser = parser;
 }