Inheritance: DevExpress.XtraEditors.XtraForm
Beispiel #1
0
 private void DownloadDataDialog(bool auto = false)
 {
     try {
         var importForm = new ImportDataForm(_dbStore, _deviceConnection){
             AutoImport = true,
             PersistentState = AppContext.PersistentState
         };
         importForm.ShowDialog(this);
     }
     catch(Exception ex) {
         Log.Error("Download data failed.", ex);
     }
     ReloadHistoric();
 }