To .NET 5 (lot of refactoring)
[master-thesis.git] / Parasitemia / ParasitemiaUIControls / NumericUpDown.xaml
1 <UserControl
2     x:Class="ParasitemiaUIControls.NumericUpDown"
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" d:DesignWidth="259.5" d:DesignHeight="45.5"
9 >
10     <Grid>
11         <Grid.RowDefinitions>
12             <RowDefinition />
13             <RowDefinition />
14         </Grid.RowDefinitions>
15         <Grid.ColumnDefinitions>
16             <ColumnDefinition Width="*" />
17             <ColumnDefinition Width="Auto" />
18         </Grid.ColumnDefinitions>
19         <Button x:Name="upButton" Grid.Column="1" Content="^"/>
20         <Button x:Name="downButton" Grid.Column="1" Grid.Row="1" Content="v"/>
21         <TextBox x:Name="input" Grid.RowSpan="2" />
22     </Grid>
23 </UserControl>