VPWWaferCtrl.xaml 1.4 KB

12345678910111213141516171819202122
  1. <UserControl x:Class="PunkHPX8_Themes.UserControls.VPWWaferCtrl"
  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:PunkHPX8_Themes.UserControls"
  7. mc:Ignorable="d" Name="self"
  8. xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
  9. xmlns:ctrl="http://OpenSEMI.Ctrlib.com/presentation">
  10. <Grid RenderTransformOrigin="0.5,0.5">
  11. <ctrl:Slot ViewType="Front" WaferStatus="{Binding ElementName=self, Path=WaferData.WaferStatus}" SlotWidth="140"
  12. SlotID="{Binding ElementName=self, Path=WaferData.SlotID}"
  13. ModuleID="{Binding ElementName=self, Path=WaferData.ModuleID}"
  14. SourceName="{Binding ElementName=self, Path=WaferData.SourceName}"
  15. DataContext="{Binding WaferData,RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}"
  16. HorizontalAlignment="Center" VerticalAlignment="Center" SlotMouseButtonDown="Slot_SlotMouseButtonDown" WaferTransferStarted="OnWaferTransfer">
  17. </ctrl:Slot>
  18. </Grid>
  19. </UserControl>