CoolingBufferStation.xaml 1.3 KB

123456789101112131415161718192021
  1. <UserControl x:Class="Aitex.Sorter.UI.Controls.CoolingBufferStation"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:Aitex.Sorter.UI.Controls"
  7. mc:Ignorable="d"
  8. d:DesignHeight="300" d:DesignWidth="300">
  9. <Canvas x:Name="root" Width="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=ActualWidth}" Height="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=ActualHeight}">
  10. <Grid >
  11. <Image Source="/Aitex.Sorter.UI;component/Resources/images/aligner.png" Width="50"/>
  12. <local:Wafer WaferStyle="Eclipse" WaferTransferOptionCommand="{Binding WaferTransferOptionCommand}" WaferItem="{Binding Wafer}" Station ="{Binding Station}" Slot="0" Width="50" />
  13. </Grid>
  14. <Canvas.RenderTransform>
  15. <TransformGroup>
  16. <RotateTransform CenterX="50" CenterY="51" Angle="{Binding RotateAngel}"></RotateTransform>
  17. </TransformGroup>
  18. </Canvas.RenderTransform>
  19. </Canvas>
  20. </UserControl>