123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <UserControl x:Class="LampInspectionMachine.Views.WorkRunView"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:LampInspectionMachine.Views"
- xmlns:prism="http://prismlibrary.com/"
- prism:ViewModelLocator.AutoWireViewModel="True"
- mc:Ignorable="d"
- d:DesignHeight="450"
- d:DesignWidth="1200"
- d:Background="White">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto" />
- <RowDefinition Height="*" />
- <RowDefinition Height="Auto" />
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition />
- <ColumnDefinition Width="Auto" />
- </Grid.ColumnDefinitions>
- <Border Grid.Row="1"
- Grid.Column="0"
- Margin="5"
- BorderBrush="#7AB0F0"
- BorderThickness="2"
- CornerRadius="5"
- Padding="1">
- </Border>
- <Border Grid.Row="1"
- Grid.Column="1"
- CornerRadius="5"
- Padding="1">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto" />
- <RowDefinition />
- </Grid.RowDefinitions>
- <Border Grid.Row="1"
- Margin="30"
- BorderBrush="#7AB0F0"
- BorderThickness="2">
- </Border>
- </Grid>
- </Border>
- </Grid>
- </UserControl>
|