123456789101112131415161718192021222324252627282930313233343536373839 |
- <UserControl x:Class="Aitex.Sorter.UI.Views.Maintenance.RobotView"
- 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:Aitex.Sorter.UI.Views.Maintenance"
- xmlns:uc="clr-namespace:Aitex.Sorter.UI.Controls"
- xmlns:Common="clr-namespace:Aitex.Sorter.Common;assembly=Aitex.Sorter.Common"
- xmlns:ctrlCommon="clr-namespace:Aitex.Sorter.UI.Controls.Common"
- xmlns:s="clr-namespace:System;assembly=mscorlib"
- xmlns:equipment="clr-namespace:MECF.Framework.Common.Equipment;assembly=MECF.Framework.Common"
- mc:Ignorable="d"
- d:DesignHeight="800" d:DesignWidth="1820">
- <UserControl.Resources>
- <s:Int32 x:Key="MoveOption" >0</s:Int32>
- <Style TargetType="Label" BasedOn="{StaticResource {x:Type Label}}">
- <Setter Property="VerticalAlignment" Value="Center" />
- <Setter Property="HorizontalAlignment" Value="Center" />
- </Style>
- </UserControl.Resources>
- <Grid>
- <uc:EFEM x:Name="efem" VerticalAlignment="Top" Height="336" Margin="-420,80,252,0" RenderTransformOrigin="0.409,0.461" />
- <uc:RobotControl x:Name="robotControl" Grid.Row="0" Width="560" Height="560" HorizontalAlignment="left" VerticalAlignment="Top" Margin="1255,56,0,0" />
-
- <Grid Height="668" Margin="800,0,0,0">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="10" />
- <ColumnDefinition Width="188" />
- <ColumnDefinition Width="60" />
- <ColumnDefinition Width="188" />
- </Grid.ColumnDefinitions>
- <uc:Foup Grid.Column="1" x:Name="foup1" Title="Carrier 1" SlotCount="25" Slots="{Binding FoupAWaferInfo}" Station="{Binding Source={x:Static equipment:ModuleName.LP1}}"></uc:Foup>
- <uc:Foup Grid.Column="3" x:Name="foup2" Title="Carrier 2" SlotCount="25" Slots="{Binding FoupBWaferInfo}" Station="{Binding Source={x:Static equipment:ModuleName.LP2}}"></uc:Foup>
- </Grid>
- </Grid>
- </UserControl>
|