RobotView.xaml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <UserControl x:Class="Aitex.Sorter.UI.Views.Maintenance.RobotView"
  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:Aitex.Sorter.UI.Views.Maintenance"
  7. xmlns:uc="clr-namespace:Aitex.Sorter.UI.Controls"
  8. xmlns:Common="clr-namespace:Aitex.Sorter.Common;assembly=Aitex.Sorter.Common"
  9. xmlns:ctrlCommon="clr-namespace:Aitex.Sorter.UI.Controls.Common"
  10. xmlns:s="clr-namespace:System;assembly=mscorlib"
  11. xmlns:equipment="clr-namespace:MECF.Framework.Common.Equipment;assembly=MECF.Framework.Common"
  12. mc:Ignorable="d"
  13. d:DesignHeight="800" d:DesignWidth="1820">
  14. <UserControl.Resources>
  15. <s:Int32 x:Key="MoveOption" >0</s:Int32>
  16. <Style TargetType="Label" BasedOn="{StaticResource {x:Type Label}}">
  17. <Setter Property="VerticalAlignment" Value="Center" />
  18. <Setter Property="HorizontalAlignment" Value="Center" />
  19. </Style>
  20. </UserControl.Resources>
  21. <Grid>
  22. <uc:EFEM x:Name="efem" VerticalAlignment="Top" Height="336" Margin="-420,80,252,0" RenderTransformOrigin="0.409,0.461" />
  23. <uc:RobotControl x:Name="robotControl" Grid.Row="0" Width="560" Height="560" HorizontalAlignment="left" VerticalAlignment="Top" Margin="1255,56,0,0" />
  24. <Grid Height="668" Margin="800,0,0,0">
  25. <Grid.ColumnDefinitions>
  26. <ColumnDefinition Width="10" />
  27. <ColumnDefinition Width="188" />
  28. <ColumnDefinition Width="60" />
  29. <ColumnDefinition Width="188" />
  30. </Grid.ColumnDefinitions>
  31. <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>
  32. <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>
  33. </Grid>
  34. </Grid>
  35. </UserControl>