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