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