WorkRunView.xaml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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"
  11. d:DesignWidth="1200"
  12. d:Background="White">
  13. <Grid>
  14. <Grid.RowDefinitions>
  15. <RowDefinition Height="Auto" />
  16. <RowDefinition Height="*" />
  17. <RowDefinition Height="Auto" />
  18. </Grid.RowDefinitions>
  19. <Grid.ColumnDefinitions>
  20. <ColumnDefinition />
  21. <ColumnDefinition Width="Auto" />
  22. </Grid.ColumnDefinitions>
  23. <Border Grid.Row="1"
  24. Grid.Column="0"
  25. Margin="5"
  26. BorderBrush="#7AB0F0"
  27. BorderThickness="2"
  28. CornerRadius="5"
  29. Padding="1">
  30. </Border>
  31. <Border Grid.Row="1"
  32. Grid.Column="1"
  33. CornerRadius="5"
  34. Padding="1">
  35. <Grid>
  36. <Grid.RowDefinitions>
  37. <RowDefinition Height="Auto" />
  38. <RowDefinition />
  39. </Grid.RowDefinitions>
  40. <Border Grid.Row="1"
  41. Margin="30"
  42. BorderBrush="#7AB0F0"
  43. BorderThickness="2">
  44. </Border>
  45. </Grid>
  46. </Border>
  47. </Grid>
  48. </UserControl>