12345678910111213141516171819202122 |
- <UserControl x:Class="PunkHPX8_Themes.UserControls.VPWWaferCtrl"
- 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:PunkHPX8_Themes.UserControls"
- mc:Ignorable="d" Name="self"
- 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="Front" WaferStatus="{Binding ElementName=self, Path=WaferData.WaferStatus}" SlotWidth="140"
- SlotID="{Binding ElementName=self, Path=WaferData.SlotID}"
- ModuleID="{Binding ElementName=self, Path=WaferData.ModuleID}"
- SourceName="{Binding ElementName=self, Path=WaferData.SourceName}"
- DataContext="{Binding WaferData,RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}"
- HorizontalAlignment="Center" VerticalAlignment="Center" SlotMouseButtonDown="Slot_SlotMouseButtonDown" WaferTransferStarted="OnWaferTransfer">
- </ctrl:Slot>
- </Grid>
- </UserControl>
|