IOCell.xaml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <UserControl x:Class="B20UVLog.Controls.IOCell"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:B20UVLog.Controls"
  7. mc:Ignorable="d">
  8. <Grid>
  9. <StackPanel Orientation="Horizontal">
  10. <StackPanel.Resources>
  11. <Style TargetType="Rectangle">
  12. <Setter Property="Margin" Value="2 2 0 0"/>
  13. <Setter Property="Height" Value="10"/>
  14. <Setter Property="Width" Value="5"/>
  15. </Style>
  16. </StackPanel.Resources>
  17. <Rectangle x:Name="B0"/>
  18. <Rectangle x:Name="B1"/>
  19. <Rectangle x:Name="B2"/>
  20. <Rectangle x:Name="B3"/>
  21. <Rectangle x:Name="B4"/>
  22. <Rectangle x:Name="B5"/>
  23. <Rectangle x:Name="B6"/>
  24. <Rectangle x:Name="B7"/>
  25. <Rectangle x:Name="B8"/>
  26. <Rectangle x:Name="B9"/>
  27. <Rectangle x:Name="BA"/>
  28. <Rectangle x:Name="BB"/>
  29. <Rectangle x:Name="BC"/>
  30. <Rectangle x:Name="BD"/>
  31. <Rectangle x:Name="BE"/>
  32. <Rectangle x:Name="BF"/>
  33. </StackPanel>
  34. </Grid>
  35. </UserControl>