| 12345678910111213141516171819202122232425262728293031323334353637383940 | <UserControl x:Class="PunkHPX8_Themes.UserControls.WaferOverviewPanel"             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:PunkHPX8_Themes.UserControls"             mc:Ignorable="d" x:Name="self"             d:DesignHeight="120" d:DesignWidth="350">    <Border BorderBrush="Gray">        <Grid>            <GroupBox Header=" Wafer">                <Grid>                    <Grid.RowDefinitions>                        <RowDefinition Height="50"/>                        <RowDefinition Height="50"/>                        <RowDefinition/>                    </Grid.RowDefinitions>                    <Grid.ColumnDefinitions>                        <ColumnDefinition Width="100"/>                        <ColumnDefinition Width="240"/>                        <ColumnDefinition/>                    </Grid.ColumnDefinitions>                    <Grid Grid.Row="0" Grid.Column="0">                        <Label Grid.Row="0" Content="ID" FontSize="16" FontWeight="Bold" VerticalContentAlignment="Center" HorizontalContentAlignment="Left" VerticalAlignment="Center" HorizontalAlignment="Left"/>                    </Grid>                    <Grid Grid.Row="1" Grid.Column="0">                        <Label Grid.Row="0" Content="Seq.Recipe" FontSize="16" 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 WaferIDValue, ElementName=self}" Foreground="Lime" FontSize="16" FontWeight="Bold" HorizontalAlignment="Center" VerticalAlignment="Center"/>                    </Border>                    <Border Grid.Row="1" Grid.Column="1"  Margin="5,5,5,5" Background="Black">                        <TextBlock  Text="{Binding SeqRecipeValue, ElementName=self}" Foreground="Lime" FontSize="16" FontWeight="Bold" HorizontalAlignment="Center" VerticalAlignment="Center"/>                    </Border>                </Grid>            </GroupBox>        </Grid>    </Border></UserControl>
 |