WorkRunView.xaml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <UserControl x:Class="LampInspectionMachine.Views.WorkRunView"
  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:LampInspectionMachine.Views"
  7. xmlns:prism="http://prismlibrary.com/"
  8. prism:ViewModelLocator.AutoWireViewModel="True"
  9. mc:Ignorable="d"
  10. d:DesignHeight="450" d:DesignWidth="1200">
  11. <Grid>
  12. <Grid.RowDefinitions>
  13. <RowDefinition Height="Auto"/>
  14. <RowDefinition Height="*"/>
  15. <RowDefinition Height="Auto"/>
  16. </Grid.RowDefinitions>
  17. <Grid.ColumnDefinitions>
  18. <ColumnDefinition />
  19. <ColumnDefinition Width="Auto"/>
  20. </Grid.ColumnDefinitions>
  21. <Border Grid.Row="1"
  22. Grid.Column="0"
  23. Margin="5"
  24. BorderBrush="#7AB0F0"
  25. BorderThickness="2"
  26. CornerRadius="5"
  27. Padding="1">
  28. </Border>
  29. <Border Grid.Row="1"
  30. Grid.Column="1"
  31. CornerRadius="5"
  32. Padding="1">
  33. <Grid>
  34. <Grid.RowDefinitions>
  35. <RowDefinition Height="Auto"/>
  36. <RowDefinition />
  37. </Grid.RowDefinitions>
  38. <Border Grid.Row="1"
  39. Margin="30"
  40. BorderBrush="#7AB0F0"
  41. BorderThickness="2">
  42. </Border>
  43. </Grid>
  44. </Border>
  45. </Grid>
  46. </UserControl>