Explorar el Código

DBReload doesn't require an already existing file anymore

Kenric Nugteren hace 3 meses
padre
commit
21e5798e00
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      DbReload/DbReload/MainViewModel.cs

+ 1 - 0
DbReload/DbReload/MainViewModel.cs

@@ -21,6 +21,7 @@ public partial class MainViewModel : ObservableObject
     {
         OpenFileDialog dlg = new OpenFileDialog();
         dlg.Filter = "SQLite Files (*.db,*.dbs)|*.db;*.dbs";
+        dlg.CheckFileExists = false;
         if (dlg.ShowDialog() == true)
             SqLiteFile = dlg.FileName;
     }