WaferCtrl.xaml 1.2 KB

12345678910111213141516171819
  1. <UserControl x:Class="CyberX8_Themes.UserControls.WaferCtrl"
  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:CyberX8_Themes.UserControls"
  7. mc:Ignorable="d"
  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="Top" WaferStatus="{Binding WaferStatus}" SlotID="{Binding SlotID}" ModuleID="{Binding ModuleID}" SourceName="{Binding SourceName}"
  12. DataContext="{Binding WaferData,RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}"
  13. HorizontalAlignment="Center" VerticalAlignment="Center" SlotMouseButtonDown="Slot_SlotMouseButtonDown" WaferTransferStarted="OnWaferTransfer">
  14. </ctrl:Slot>
  15. </Grid>
  16. </UserControl>