First commit of the f# source code.
[master-thesis.git] / Parasitemia / Parasitemia / NumericUpDown.xaml
1 <UserControl
2                 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3                 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4                 xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
5       xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
6       mc:Ignorable="d" d:DesignWidth="259.5" d:DesignHeight="45.5"
7                 >
8    <Grid>
9       <Grid.RowDefinitions>
10          <RowDefinition />
11          <RowDefinition />
12       </Grid.RowDefinitions>
13       <Grid.ColumnDefinitions>
14          <ColumnDefinition Width="*" />
15          <ColumnDefinition Width="Auto" />
16       </Grid.ColumnDefinitions>
17       <Button x:Name="upButton" Grid.Column="1" Content="^"/>
18       <Button x:Name="downButton" Grid.Column="1" Grid.Row="1" Content="v"/>
19       <TextBox x:Name="input" Grid.RowSpan="2" />
20    </Grid>
21 </UserControl>