| 123456789101112131415161718192021222324252627282930313233 | <UserControl x:Class="EfemUI.Controls.BufferStation"             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:Aitex.Sorter.UI.Controls;assembly=Aitex.Sorter.UI"             mc:Ignorable="d"              d:DesignHeight="300" d:DesignWidth="300">    <Canvas x:Name="root" Width="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=ActualWidth}" Height="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=ActualHeight}">        <Grid >            <Image Source="/Aitex.Sorter.UI;component/Resources/images/loadlock.png" Width="210"/>            <ItemsControl ItemsSource="{Binding Wafers}">                <ItemsControl.ItemsPanel>                    <ItemsPanelTemplate>                        <Grid />                    </ItemsPanelTemplate>                </ItemsControl.ItemsPanel>                <ItemsControl.ItemTemplate>                    <DataTemplate>                     <local:Wafer WaferStyle="Eclipse" WaferItem="{Binding .}" Station ="{Binding DataContext.Station,ElementName=root}" Margin="-100,15,0,0" Slot="0" Height="65" Width="65" />                    </DataTemplate>                </ItemsControl.ItemTemplate>            </ItemsControl>        </Grid>        <Canvas.RenderTransform>            <TransformGroup>                <RotateTransform CenterX="50" CenterY="51" Angle="{Binding RotateAngel}"></RotateTransform>            </TransformGroup>        </Canvas.RenderTransform>    </Canvas></UserControl>
 |