Chamber.xaml 1.4 KB

1234567891011121314151617181920212223
  1. <UserControl x:Class="VirgoUI.Controls.Parts.Chamber"
  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:parts="clr-namespace:VirgoUI.Client.Controls.Parts"
  8. mc:Ignorable="d"
  9. Height="135" Width="121">
  10. <Grid x:Name="root" Width="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=ActualWidth}" Height="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=ActualHeight}">
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="*" />
  13. <RowDefinition Height="11" />
  14. </Grid.RowDefinitions>
  15. <parts:Door Grid.Row="1" State="{Binding DoorState,RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}" />
  16. <Grid Grid.Row="0" VerticalAlignment="Stretch">
  17. <Image Source="/VirgoUI;component/Themes/images/parts/chamber.png" />
  18. <!--<local:Wafer WaferStyle="Eclipse" WaferItem="{Binding Wafer}" Station ="{Binding Station}" Slot="{Binding Slot}" Margin="25" />-->
  19. <local:WaferCtrl WaferData="{Binding WaferData,RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}"/>
  20. </Grid>
  21. </Grid>
  22. </UserControl>