WaferTransferDialog.xaml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <Window x:Class="ClusterUI.Client.Controls.Parts.WaferTransferDialog"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. mc:Ignorable="d"
  7. WindowStyle="SingleBorderWindow" ResizeMode="NoResize" ShowInTaskbar="False"
  8. Title="Transfer Option" Height="450" Width="380" WindowStartupLocation="CenterOwner" SizeToContent="Height">
  9. <Grid VerticalAlignment="Center" x:Name="grid">
  10. <Grid.ColumnDefinitions>
  11. <ColumnDefinition Width="*" />
  12. <ColumnDefinition Width="*" />
  13. </Grid.ColumnDefinitions>
  14. <Grid.RowDefinitions>
  15. <RowDefinition Height="40" />
  16. <RowDefinition Height="40" />
  17. <RowDefinition Height="40" />
  18. <RowDefinition Height="40" />
  19. <RowDefinition Height="40" />
  20. <RowDefinition Height="40" />
  21. <RowDefinition Height="40" />
  22. <RowDefinition Height="40" />
  23. <RowDefinition Height="40" />
  24. <RowDefinition Height="auto" />
  25. <RowDefinition Height="*" />
  26. </Grid.RowDefinitions>
  27. <Label Grid.Row="0" Grid.Column="0" Content="Source Chamber" />
  28. <Label x:Name="lbSource" Grid.Row="0" Grid.Column="1" Content="" />
  29. <Label Grid.Row="1" Grid.Column="0" Content="Source Slot" />
  30. <Label x:Name="lbSourceSlot" Grid.Row="1" Grid.Column="1" Content="" />
  31. <Label Grid.Row="2" Grid.Column="0" Content="Dest Chamber" />
  32. <Label x:Name="lbDest" Grid.Row="2" Grid.Column="1" Content="" />
  33. <Label Grid.Row="3" Grid.Column="0" Content="Dest Slot" />
  34. <Label x:Name="lblDestSlot" Grid.Row="3" Grid.Column="1" Content="" />
  35. <Label Grid.Row="4" Grid.Column="0" Content="Aligner" />
  36. <CheckBox Grid.Row="4" x:Name="chkAligner" VerticalContentAlignment="Center" Grid.Column="1" />
  37. <Label Grid.Row="5" Grid.Column="0" Content="Read Laser Marker" />
  38. <CheckBox Grid.Row="5" x:Name="chkReadID" VerticalContentAlignment="Center" Grid.Column="1" />
  39. <Label Grid.Row="6" Grid.Column="0" Content="Read T7 Code" />
  40. <CheckBox Grid.Row="6" x:Name="chkReadID2" VerticalContentAlignment="Center" Grid.Column="1" />
  41. <Label Grid.Row="7" Grid.Column="0" Content="Blade" />
  42. <WrapPanel Grid.Row="7" Grid.Column="1" VerticalAlignment="Center">
  43. <RadioButton x:Name="chkBlade1" Content="1" IsChecked="True" />
  44. <RadioButton x:Name="chkBlade2" Margin="8,0" Content="2" />
  45. </WrapPanel>
  46. <Label Grid.Row="8" Grid.Column="0" Content="Aligner Angle" />
  47. <TextBox Grid.Row="8" x:Name="tbAngle" Grid.Column="1" Text="0" Height="30" Margin="4" />
  48. <Button x:Name="btnOK" Grid.Row="9" Grid.Column="0" Content="OK" Click="btnOK_Click" />
  49. <Button x:Name="btnCancel" Grid.Row="9" Grid.Column="1" Content="Cancel" Click="btnCancel_Click" />
  50. </Grid>
  51. </Window>