| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 | <UserControl x:Class="CyberX8_Themes.UserControls.WaferHolderPanel"             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:CyberX8_Themes.UserControls"             mc:Ignorable="d" x:Name="self"             d:DesignHeight="180" d:DesignWidth="400">    <Border BorderBrush="Gray">        <Grid>            <GroupBox Header=" Wafer Shuttle">                <Grid>                    <Grid.RowDefinitions>                        <RowDefinition Height="40"/>                        <RowDefinition Height="40"/>                        <RowDefinition Height="40"/>                        <RowDefinition Height="40"/>                        <RowDefinition/>                    </Grid.RowDefinitions>                    <Grid.ColumnDefinitions>                        <ColumnDefinition Width="80"/>                        <ColumnDefinition Width="150"/>                        <ColumnDefinition Width="80"/>                        <ColumnDefinition Width="90"/>                        <ColumnDefinition/>                    </Grid.ColumnDefinitions>                    <Grid Grid.Row="0" Grid.Column="0">                        <Label Grid.Row="0" Content="ID" FontSize="12" FontWeight="Bold" VerticalContentAlignment="Center" HorizontalContentAlignment="Left" VerticalAlignment="Center" HorizontalAlignment="Left"/>                    </Grid>                    <Grid Grid.Row="1" Grid.Column="0">                        <Label Grid.Row="0" Content="Wafer-A ID" FontSize="12" FontWeight="Bold" VerticalContentAlignment="Center" HorizontalContentAlignment="Left" VerticalAlignment="Center" HorizontalAlignment="Left"/>                    </Grid>                    <Grid Grid.Row="2" Grid.Column="0">                        <Label Grid.Row="0" Content="Wafer-B ID" FontSize="12" FontWeight="Bold" VerticalContentAlignment="Center" HorizontalContentAlignment="Left" VerticalAlignment="Center" HorizontalAlignment="Left"/>                    </Grid>                    <Grid Grid.Row="3" Grid.Column="0">                        <Label Content="Seq.Recipe" FontSize="12" FontWeight="Bold" VerticalContentAlignment="Center" HorizontalContentAlignment="Left" VerticalAlignment="Center" HorizontalAlignment="Left"/>                    </Grid>                    <Grid Grid.Row="1" Grid.Column="2">                        <Label Grid.Row="0" Content="LS-A ID" FontSize="12" FontWeight="Bold" VerticalContentAlignment="Center" HorizontalContentAlignment="Left" VerticalAlignment="Center" HorizontalAlignment="Left"/>                    </Grid>                    <Grid Grid.Row="2" Grid.Column="2">                        <Label Grid.Row="0" Content="LS-B ID" FontSize="12" FontWeight="Bold" VerticalContentAlignment="Center" HorizontalContentAlignment="Left" VerticalAlignment="Center" HorizontalAlignment="Left"/>                    </Grid>                    <Border Grid.Row="0" Grid.Column="1"  Margin="5,5,5,5" Background="Black">                        <TextBlock  Text="{Binding WaferHolderInfo.Id, ElementName=self}" Foreground="Lime" FontSize="16" FontWeight="Bold" HorizontalAlignment="Left" VerticalAlignment="Center"/>                    </Border>                    <Border Grid.Row="1" Grid.Column="1"  Margin="5,5,5,5" Background="Black">                        <TextBlock  Text="{Binding WaferHolderInfo.WaferAId, ElementName=self}" Foreground="Lime" FontSize="16" FontWeight="Bold" HorizontalAlignment="Left" VerticalAlignment="Center"/>                    </Border>                    <Border Grid.Row="2" Grid.Column="1"  Margin="5,5,5,5" Background="Black">                        <TextBlock  Text="{Binding WaferHolderInfo.WaferBId, ElementName=self}" Foreground="Lime" FontSize="16" FontWeight="Bold" HorizontalAlignment="Left" VerticalAlignment="Center"/>                    </Border>                    <Border Grid.Row="3" Grid.Column="1" Grid.ColumnSpan="2" Margin="5,5,5,5" Background="Black">                        <TextBlock  Text="{Binding SeqRecipeValue, ElementName=self}" Foreground="Lime" FontSize="16" FontWeight="Bold" HorizontalAlignment="Left" VerticalAlignment="Center"/>                    </Border>                    <Border Grid.Row="1" Grid.Column="3"  Margin="5,5,15,5" Background="Black">                        <TextBlock  Text="{Binding WaferHolderInfo.CrsAId, ElementName=self}" Foreground="Lime" FontSize="16" FontWeight="Bold" HorizontalAlignment="Left" VerticalAlignment="Center"/>                    </Border>                    <Border Grid.Row="2" Grid.Column="3"  Margin="5,5,15,5" Background="Black">                        <TextBlock  Text="{Binding WaferHolderInfo.CrsBId, ElementName=self}" Foreground="Lime" FontSize="16" FontWeight="Bold" HorizontalAlignment="Left" VerticalAlignment="Center"/>                    </Border>                </Grid>            </GroupBox>        </Grid>    </Border></UserControl>
 |