Invertion.xaml 1.0 KB

1234567891011121314151617
  1. <UserControl x:Class="Aitex.Sorter.UI.Controls.Invertion"
  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="150" d:DesignWidth="172">
  9. <Viewbox>
  10. <Grid x:Name="root" Width="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=ActualWidth}" Height="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=ActualHeight}">
  11. <Image Source="/Aitex.Sorter.UI;component/Resources/images/Invertion.png"/>
  12. <Image Width="87" Height="109" Source="/Aitex.Sorter.UI;component/Resources/images/InvertionHand1.png"/>
  13. <local:Wafer WaferStyle="Eclipse" WaferItem="{Binding Wafer}" Station ="{Binding Station}" Slot="0" />
  14. </Grid>
  15. </Viewbox>
  16. </UserControl>