예제 #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;
        }
예제 #2
0
 public BatchGEOModelView()
 {
     GMV = new GEOModelView();
     GEOFiles = new ObservableCollection<GEO>();
     CSVEntries = new List<CSVEntry>();
 }
예제 #3
0
 public ReplaceGEOModelView()
 {
     GMV = new GEOModelView();
 }