Loadlock.xaml 1.4 KB

123456789101112131415161718192021222324
  1. <UserControl x:Class="VirgoUI.Controls.Parts.Loadlock"
  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:VirgoUI.Controls.Parts"
  7. xmlns:ctrl="http://OpenSEMI.Ctrlib.com/presentation"
  8. xmlns:parts="clr-namespace:VirgoUI.Client.Controls.Parts"
  9. mc:Ignorable="d"
  10. x:Name="self"
  11. Width="95" Height="110">
  12. <Grid x:Name="root" Width="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=ActualWidth}" Height="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=ActualHeight}">
  13. <StackPanel Orientation="Vertical">
  14. <Grid Grid.Row="1" VerticalAlignment="Top">
  15. <Image Source="/VirgoUI;component/Themes/images/parts/loadlock.png"/>
  16. <!--<local:Wafer WaferStyle="Eclipse" WaferItem="{Binding Path=Wafer, ElementName=self}" Station ="{Binding Path=Station, ElementName=self}" Slot="1" Margin="18,16,18,18" />-->
  17. <local:WaferCtrl WaferData="{Binding Path=WaferData, ElementName=self}" />
  18. </Grid>
  19. <parts:Door Grid.Row="2" State="{Binding Path=ATMDoorState, ElementName=self}" />
  20. </StackPanel>
  21. </Grid>
  22. </UserControl>