To .NET 5 (lot of refactoring)
[master-thesis.git] / Parasitemia / ParasitemiaUIControls / CommandLineArgumentsWindow.xaml
1 <Window
2     x:Class="ParasitemiaUIControls.CommandLineArgumentsWindow"
3     xmlns:local="clr-namespace:ParasitemiaUIControls"
4     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
5     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
6     xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
7     xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
8     mc:Ignorable="d"
9     Height="420" Width="620" Title="Command Line Arguments" Icon="/ParasitemiaUIControls;component/Resources/icon.ico" ResizeMode="CanResizeWithGrip"
10 >
11     <Grid Margin="3">
12         <Grid.RowDefinitions>
13             <RowDefinition Height="Auto"/>
14             <RowDefinition Height="*"/>
15             <RowDefinition Height="Auto"/>
16         </Grid.RowDefinitions>
17         <TextBlock Margin="3">Parasitemia can be launched via a command line, here are the possible arguments</TextBlock>
18         <TextBox x:Name="txtCommandLineArguments" x:FieldModifier="public" Margin="6" Grid.Row="1" TextWrapping="Wrap" FontFamily="Courier New" FontSize="11" IsReadOnly="True" />
19         <Button x:Name="butClose" x:FieldModifier="public" Content="Close" HorizontalAlignment="Right" Margin="3" VerticalAlignment="Bottom" Width="75" Grid.Row="2" Height="20"/>
20     </Grid>
21 </Window>