* Add the analysis window.
[master-thesis.git] / Parasitemia / Parasitemia / GUI / RBCFrame.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:fsxaml="clr-namespace:FsXaml;assembly=FsXaml.Wpf"
6       xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
7       mc:Ignorable="d" d:DesignWidth="100" d:DesignHeight="100"
8                 >
9    <Grid x:Name="grid">
10       <Grid.ContextMenu>
11          <ContextMenu>
12             <MenuItem x:Name="menuRBCSetAsHealthy" Header="_Set as healthy"  />
13             <MenuItem x:Name="menuRBCSetAsInfected" Header="_Set as infected" />
14          </ContextMenu>
15       </Grid.ContextMenu>
16       <Rectangle x:Name="border" Fill="#00000000">
17       </Rectangle>
18       <Polygon x:Name="manuallyAdded" Points="0,0 12,0, 12,12" Fill="Black" HorizontalAlignment="Right" VerticalAlignment="Top" />
19       <TextBlock x:Name="txtRBCNumber" Padding="2" Text="42" HorizontalAlignment="Right" VerticalAlignment="Bottom" Background="#4C000000" Foreground="White" Margin="0,0,3,3"/>
20    </Grid>
21 </UserControl>