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