| 123456789101112131415161718192021222324 | <UserControl x:Class="CyberX8_Themes.UserControls.WaferHolderControl"             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"              xmlns:Converters="clr-namespace:CyberX8_Themes.Converters"             mc:Ignorable="d" x:Name="self"             d:DesignHeight="150" d:DesignWidth="80">    <UserControl.Resources>        <Converters:BoolToColor8 x:Key="boolToColor8"/>    </UserControl.Resources>    <Grid>        <Viewbox Stretch="Fill">            <Canvas Width="80" Height="150">                <Polygon Stroke="Black" StrokeThickness="1" Points="30,0 50,0 50,20 60,20 60,145 20,145 20,20 30,20 " Fill="{Binding ElementName=self,Path=IsWHEnable,Converter={StaticResource boolToColor8}}"></Polygon>                <Line Stroke="Black" X1="30" X2="50" Y1="20" Y2="20" StrokeThickness="1"  Fill="Black" HorizontalAlignment="Center" VerticalAlignment="Top"></Line>                <Rectangle Width="10" Height="100" Fill="Black" Canvas.Left="15" Canvas.Top="40"></Rectangle>                <Rectangle Width="10" Height="100" Fill="Black" Canvas.Left="55" Canvas.Top="40" HorizontalAlignment="Left" VerticalAlignment="Center"></Rectangle>            </Canvas>        </Viewbox>    </Grid></UserControl>
 |