| 123456789101112131415161718 | <UserControl x:Class="Venus_Themes.UserControls.WaferCtrl"             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:Venus_Themes.UserControls"             mc:Ignorable="d"              xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"                xmlns:ctrl="http://OpenSEMI.Ctrlib.com/presentation">    <Grid RenderTransformOrigin="0.5,0.5">        <ctrl:Slot ViewType="Top" WaferStatus="{Binding WaferStatus}" SlotID="{Binding SlotID}" ModuleID="{Binding ModuleID}" SourceName="{Binding SourceName}"                        DataContext="{Binding WaferData,RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}"  HorizontalAlignment="Center" VerticalAlignment="Center"  SlotMouseButtonDown="Slot_SlotMouseButtonDown">         </ctrl:Slot>            </Grid></UserControl>
 |