| 123456789101112131415161718192021222324252627282930313233343536373839 | <Window x:Class="Bolt.Toolkit.Wpf.Windows.WaferTransferDialog"        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"        xmlns:local="clr-namespace:Bolt.Toolkit.Wpf.Windows"        mc:Ignorable="d"        WindowStyle="SingleBorderWindow" ResizeMode="NoResize" ShowInTaskbar="False"        Title="Transfer Option" Height="320" Width="380" WindowStartupLocation="CenterOwner">	<Grid x:Name="grid">		<Grid.ColumnDefinitions>			<ColumnDefinition Width="*" />			<ColumnDefinition Width="*" />		</Grid.ColumnDefinitions>		<Grid.RowDefinitions>			<RowDefinition Height="40" />			<RowDefinition Height="40" />			<RowDefinition Height="40" />			<RowDefinition Height="40" />			<RowDefinition Height="*" />		</Grid.RowDefinitions>		<Label Grid.Row="0" Grid.Column="0" Content="Source Chamber" />		<Label x:Name="lbSource" Grid.Row="0" Grid.Column="1" Content="" />		<Label Grid.Row="1" Grid.Column="0" Content="Source Slot" />		<Label x:Name="lbSourceSlot" Grid.Row="1" Grid.Column="1" Content="" />		<Label Grid.Row="2" Grid.Column="0" Content="Dest Chamber" />		<Label x:Name="lbDest" Grid.Row="2" Grid.Column="1" Content="" />		<Label Grid.Row="3" Grid.Column="0" Content="Dest Slot" />		<Label x:Name="lblDestSlot" Grid.Row="3" Grid.Column="1" Content="" />		<Button x:Name="btnOK" Width="80" Height="40" Grid.Row="4" Grid.Column="0" Content="OK" Click="btnOK_Click" />		<Button x:Name="btnCancel" Grid.Row="4" Width="80" Height="40" Grid.Column="1" Content="Cancel" Click="btnCancel_Click" />	</Grid></Window>
 |