To .NET 5 (lot of refactoring)
[master-thesis.git] / Parasitemia / ParasitemiaUI / CommandLineArguments.fs
index 8025ebf..02d7979 100644 (file)
@@ -1,12 +1,11 @@
 module ParasitemiaUI.CommandLineArguments
 
-open System
 open System.Windows
-open System.Windows.Controls
-open System.Diagnostics
+
+open ParasitemiaUIControls
 
 let showWindow (parent : Window) =
-    let win = Views.CommandLineArgumentsWindow ()
+    let win = CommandLineArgumentsWindow ()
     win.Owner <- parent
 
     win.Left <- (if parent.WindowState = WindowState.Maximized then 0. else parent.Left) + parent.ActualWidth / 2. - win.Width / 2.