WaferHolderPanel.xaml 5.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <UserControl x:Class="CyberX8_Themes.UserControls.WaferHolderPanel"
  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:CyberX8_Themes.UserControls"
  7. mc:Ignorable="d" x:Name="self"
  8. d:DesignHeight="180" d:DesignWidth="400">
  9. <Border BorderBrush="Gray">
  10. <Grid>
  11. <GroupBox Header=" Wafer Shuttle">
  12. <Grid>
  13. <Grid.RowDefinitions>
  14. <RowDefinition Height="40"/>
  15. <RowDefinition Height="40"/>
  16. <RowDefinition Height="40"/>
  17. <RowDefinition Height="40"/>
  18. <RowDefinition/>
  19. </Grid.RowDefinitions>
  20. <Grid.ColumnDefinitions>
  21. <ColumnDefinition Width="80"/>
  22. <ColumnDefinition Width="150"/>
  23. <ColumnDefinition Width="80"/>
  24. <ColumnDefinition Width="90"/>
  25. <ColumnDefinition/>
  26. </Grid.ColumnDefinitions>
  27. <Grid Grid.Row="0" Grid.Column="0">
  28. <Label Grid.Row="0" Content="ID" FontSize="12" FontWeight="Bold" VerticalContentAlignment="Center" HorizontalContentAlignment="Left" VerticalAlignment="Center" HorizontalAlignment="Left"/>
  29. </Grid>
  30. <Grid Grid.Row="1" Grid.Column="0">
  31. <Label Grid.Row="0" Content="Wafer-A ID" FontSize="12" FontWeight="Bold" VerticalContentAlignment="Center" HorizontalContentAlignment="Left" VerticalAlignment="Center" HorizontalAlignment="Left"/>
  32. </Grid>
  33. <Grid Grid.Row="2" Grid.Column="0">
  34. <Label Grid.Row="0" Content="Wafer-B ID" FontSize="12" FontWeight="Bold" VerticalContentAlignment="Center" HorizontalContentAlignment="Left" VerticalAlignment="Center" HorizontalAlignment="Left"/>
  35. </Grid>
  36. <Grid Grid.Row="3" Grid.Column="0">
  37. <Label Content="Seq.Recipe" FontSize="12" FontWeight="Bold" VerticalContentAlignment="Center" HorizontalContentAlignment="Left" VerticalAlignment="Center" HorizontalAlignment="Left"/>
  38. </Grid>
  39. <Grid Grid.Row="1" Grid.Column="2">
  40. <Label Grid.Row="0" Content="LS-A ID" FontSize="12" FontWeight="Bold" VerticalContentAlignment="Center" HorizontalContentAlignment="Left" VerticalAlignment="Center" HorizontalAlignment="Left"/>
  41. </Grid>
  42. <Grid Grid.Row="2" Grid.Column="2">
  43. <Label Grid.Row="0" Content="LS-B ID" FontSize="12" FontWeight="Bold" VerticalContentAlignment="Center" HorizontalContentAlignment="Left" VerticalAlignment="Center" HorizontalAlignment="Left"/>
  44. </Grid>
  45. <Border Grid.Row="0" Grid.Column="1" Margin="5,5,5,5" Background="Black">
  46. <TextBlock Text="{Binding WaferHolderInfo.Id, ElementName=self}" Foreground="Lime" FontSize="16" FontWeight="Bold" HorizontalAlignment="Left" VerticalAlignment="Center"/>
  47. </Border>
  48. <Border Grid.Row="1" Grid.Column="1" Margin="5,5,5,5" Background="Black">
  49. <TextBlock Text="{Binding WaferHolderInfo.WaferAId, ElementName=self}" Foreground="Lime" FontSize="16" FontWeight="Bold" HorizontalAlignment="Left" VerticalAlignment="Center"/>
  50. </Border>
  51. <Border Grid.Row="2" Grid.Column="1" Margin="5,5,5,5" Background="Black">
  52. <TextBlock Text="{Binding WaferHolderInfo.WaferBId, ElementName=self}" Foreground="Lime" FontSize="16" FontWeight="Bold" HorizontalAlignment="Left" VerticalAlignment="Center"/>
  53. </Border>
  54. <Border Grid.Row="3" Grid.Column="1" Grid.ColumnSpan="2" Margin="5,5,5,5" Background="Black">
  55. <TextBlock Text="{Binding SeqRecipeValue, ElementName=self}" Foreground="Lime" FontSize="16" FontWeight="Bold" HorizontalAlignment="Left" VerticalAlignment="Center"/>
  56. </Border>
  57. <Border Grid.Row="1" Grid.Column="3" Margin="5,5,15,5" Background="Black">
  58. <TextBlock Text="{Binding WaferHolderInfo.CrsAId, ElementName=self}" Foreground="Lime" FontSize="16" FontWeight="Bold" HorizontalAlignment="Left" VerticalAlignment="Center"/>
  59. </Border>
  60. <Border Grid.Row="2" Grid.Column="3" Margin="5,5,15,5" Background="Black">
  61. <TextBlock Text="{Binding WaferHolderInfo.CrsBId, ElementName=self}" Foreground="Lime" FontSize="16" FontWeight="Bold" HorizontalAlignment="Left" VerticalAlignment="Center"/>
  62. </Border>
  63. </Grid>
  64. </GroupBox>
  65. </Grid>
  66. </Border>
  67. </UserControl>