WaferTransferDialog.xaml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <Window x:Class="Bolt.Toolkit.Wpf.Windows.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. xmlns:local="clr-namespace:Bolt.Toolkit.Wpf.Windows"
  7. mc:Ignorable="d"
  8. WindowStyle="SingleBorderWindow" ResizeMode="NoResize" ShowInTaskbar="False"
  9. Title="Transfer Option" Height="320" Width="380" WindowStartupLocation="CenterOwner">
  10. <Grid x:Name="grid">
  11. <Grid.ColumnDefinitions>
  12. <ColumnDefinition Width="*" />
  13. <ColumnDefinition Width="*" />
  14. </Grid.ColumnDefinitions>
  15. <Grid.RowDefinitions>
  16. <RowDefinition Height="40" />
  17. <RowDefinition Height="40" />
  18. <RowDefinition Height="40" />
  19. <RowDefinition Height="40" />
  20. <RowDefinition Height="*" />
  21. </Grid.RowDefinitions>
  22. <Label Grid.Row="0" Grid.Column="0" Content="Source Chamber" />
  23. <Label x:Name="lbSource" Grid.Row="0" Grid.Column="1" Content="" />
  24. <Label Grid.Row="1" Grid.Column="0" Content="Source Slot" />
  25. <Label x:Name="lbSourceSlot" Grid.Row="1" Grid.Column="1" Content="" />
  26. <Label Grid.Row="2" Grid.Column="0" Content="Dest Chamber" />
  27. <Label x:Name="lbDest" Grid.Row="2" Grid.Column="1" Content="" />
  28. <Label Grid.Row="3" Grid.Column="0" Content="Dest Slot" />
  29. <Label x:Name="lblDestSlot" Grid.Row="3" Grid.Column="1" Content="" />
  30. <Button x:Name="btnOK" Width="80" Height="40" Grid.Row="4" Grid.Column="0" Content="OK" Click="btnOK_Click" />
  31. <Button x:Name="btnCancel" Grid.Row="4" Width="80" Height="40" Grid.Column="1" Content="Cancel" Click="btnCancel_Click" />
  32. </Grid>
  33. </Window>