To .NET 5 (lot of refactoring)
[master-thesis.git] / Parasitemia / ParasitemiaUIControls / CommandLineArgumentsWindow.xaml
diff --git a/Parasitemia/ParasitemiaUIControls/CommandLineArgumentsWindow.xaml b/Parasitemia/ParasitemiaUIControls/CommandLineArgumentsWindow.xaml
new file mode 100644 (file)
index 0000000..733eb9a
--- /dev/null
@@ -0,0 +1,21 @@
+<Window
+    x:Class="ParasitemiaUIControls.CommandLineArgumentsWindow"
+    xmlns:local="clr-namespace:ParasitemiaUIControls"
+    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
+    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
+    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
+    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
+    mc:Ignorable="d"
+    Height="420" Width="620" Title="Command Line Arguments" Icon="/ParasitemiaUIControls;component/Resources/icon.ico" ResizeMode="CanResizeWithGrip"
+>
+    <Grid Margin="3">
+        <Grid.RowDefinitions>
+            <RowDefinition Height="Auto"/>
+            <RowDefinition Height="*"/>
+            <RowDefinition Height="Auto"/>
+        </Grid.RowDefinitions>
+        <TextBlock Margin="3">Parasitemia can be launched via a command line, here are the possible arguments</TextBlock>
+        <TextBox x:Name="txtCommandLineArguments" x:FieldModifier="public" Margin="6" Grid.Row="1" TextWrapping="Wrap" FontFamily="Courier New" FontSize="11" IsReadOnly="True" />
+        <Button x:Name="butClose" x:FieldModifier="public" Content="Close" HorizontalAlignment="Right" Margin="3" VerticalAlignment="Bottom" Width="75" Grid.Row="2" Height="20"/>
+    </Grid>
+</Window>
\ No newline at end of file