WaferOverviewPanel.xaml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <UserControl x:Class="CyberX8_Themes.UserControls.WaferOverviewPanel"
  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="120" d:DesignWidth="350">
  9. <Border BorderBrush="Gray">
  10. <Grid>
  11. <GroupBox Header=" Wafer">
  12. <Grid>
  13. <Grid.RowDefinitions>
  14. <RowDefinition Height="50"/>
  15. <RowDefinition Height="50"/>
  16. <RowDefinition/>
  17. </Grid.RowDefinitions>
  18. <Grid.ColumnDefinitions>
  19. <ColumnDefinition Width="100"/>
  20. <ColumnDefinition Width="240"/>
  21. <ColumnDefinition/>
  22. </Grid.ColumnDefinitions>
  23. <Grid Grid.Row="0" Grid.Column="0">
  24. <Label Grid.Row="0" Content="ID" FontSize="16" FontWeight="Bold" VerticalContentAlignment="Center" HorizontalContentAlignment="Left" VerticalAlignment="Center" HorizontalAlignment="Left"/>
  25. </Grid>
  26. <Grid Grid.Row="1" Grid.Column="0">
  27. <Label Grid.Row="0" Content="Seq.Recipe" FontSize="16" FontWeight="Bold" VerticalContentAlignment="Center" HorizontalContentAlignment="Left" VerticalAlignment="Center" HorizontalAlignment="Left"/>
  28. </Grid>
  29. <Border Grid.Row="0" Grid.Column="1" Margin="5,5,5,5" Background="Black">
  30. <TextBlock Text="{Binding WaferIDValue, ElementName=self}" Foreground="Lime" FontSize="16" FontWeight="Bold" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  31. </Border>
  32. <Border Grid.Row="1" Grid.Column="1" Margin="5,5,5,5" Background="Black">
  33. <TextBlock Text="{Binding SeqRecipeValue, ElementName=self}" Foreground="Lime" FontSize="16" FontWeight="Bold" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  34. </Border>
  35. </Grid>
  36. </GroupBox>
  37. </Grid>
  38. </Border>
  39. </UserControl>