Exemplo n.º 1
0
        public MainWindow()
        {
            InitializeComponent();

            // Bind appstatus class to the main status bar
            StatusBar.DataContext = AppStatus.Instance;

            // Set up single file editor
            GEOModelView gmv = new GEOModelView();
            Grid_Editor.DataContext = gmv;

            // set up batch file editor
            BatchGEOModelView bmv = new BatchGEOModelView();
            Grid_Batch.DataContext = bmv;
        }
Exemplo n.º 2
0
 public BatchGEOModelView()
 {
     GMV = new GEOModelView();
     GEOFiles = new ObservableCollection<GEO>();
     CSVEntries = new List<CSVEntry>();
 }
Exemplo n.º 3
0
 public ReplaceGEOModelView()
 {
     GMV = new GEOModelView();
 }