|
@@ -3,7 +3,9 @@
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
+ xmlns:prism="http://prismlibrary.com/"
|
|
|
mc:Ignorable="d"
|
|
|
+ prism:ViewModelLocator.AutoWireViewModel="True"
|
|
|
AllowsTransparency="True"
|
|
|
WindowStyle="None"
|
|
|
WindowStartupLocation="CenterOwner"
|
|
@@ -14,32 +16,28 @@
|
|
|
<Grid Background="#dcf3f5">
|
|
|
<Grid.RowDefinitions>
|
|
|
<RowDefinition Height="2*"></RowDefinition>
|
|
|
- <RowDefinition Height=".5*"></RowDefinition>
|
|
|
<RowDefinition Height="1*"></RowDefinition>
|
|
|
<RowDefinition Height="1*"></RowDefinition>
|
|
|
<RowDefinition Height="1*"></RowDefinition>
|
|
|
</Grid.RowDefinitions>
|
|
|
- <Grid.ColumnDefinitions>
|
|
|
- <ColumnDefinition Width="1*"/>
|
|
|
- <ColumnDefinition Width="1*"/>
|
|
|
- <ColumnDefinition Width="1*"/>
|
|
|
- </Grid.ColumnDefinitions>
|
|
|
- <TextBlock Grid.ColumnSpan="3" Text="Please Confirm Return Wafer" VerticalAlignment="Center" Margin="20,0" FontWeight="Bold" FontSize="18"></TextBlock>
|
|
|
- <StackPanel Grid.Row="2" Grid.ColumnSpan="3" Orientation="Horizontal" VerticalAlignment="Center">
|
|
|
+
|
|
|
+ <TextBlock Text="{Binding ConfirmText }" VerticalAlignment="Center" Margin="20,0" FontWeight="Bold" FontSize="18"></TextBlock>
|
|
|
+ <StackPanel Grid.Row="2" Grid.ColumnSpan="3" Orientation="Horizontal" VerticalAlignment="Center" Visibility="Hidden">
|
|
|
<ctrl:CheckBoxExt x:Name="cancooling" Content="Need Cooling" Width="120" Margin="5,0,0,0" Checked="needcooling_Checked" Unchecked="needcooling_unChecked"></ctrl:CheckBoxExt>
|
|
|
<TextBlock Text="Cooling Time" Width="80"/>
|
|
|
<ctrl:TextBoxEx x:Name="coolingtime" IsEnabled="False" Width="50" InputMethod.IsInputMethodEnabled="False" PreviewTextInput="TextBox_PreviewTextInput"></ctrl:TextBoxEx>
|
|
|
<TextBlock Text="s" Margin="5,0"/>
|
|
|
</StackPanel>
|
|
|
- <StackPanel Grid.Row="3" Grid.ColumnSpan="3" Orientation="Horizontal" VerticalAlignment="Center">
|
|
|
- <ctrl:CheckBoxExt x:Name="canalign" Content="Need Align" Width="120" Margin="5,0,0,0" Checked="needalign_Checked" Unchecked="needalign_unChecked"></ctrl:CheckBoxExt>
|
|
|
+ <StackPanel Grid.Row="1" Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Center">
|
|
|
+ <ctrl:CheckBoxExt x:Name="canalign" Content="Need Align" Width="120" Margin="5,0,0,0" Checked="needalign_Checked" Unchecked="needalign_unChecked" HorizontalContentAlignment="Center"></ctrl:CheckBoxExt>
|
|
|
<TextBlock Text="Align Angel" Width="80"/>
|
|
|
<ctrl:TextBoxEx x:Name="alignangel" IsEnabled="False" Width="50" InputMethod.IsInputMethodEnabled="False" PreviewTextInput="TextBox_PreviewTextInput"></ctrl:TextBoxEx>
|
|
|
<TextBlock Text="D" Margin="5,0"/>
|
|
|
</StackPanel>
|
|
|
-
|
|
|
- <Button Grid.Row="4" Grid.Column="1" Content="Return" Margin="5" Click="Button_Click" ></Button>
|
|
|
- <Button Grid.Row="4" Grid.Column="2" Content="Cancel" Margin="5" Click="Button_Click_1"></Button>
|
|
|
+ <StackPanel Grid.Row="4" HorizontalAlignment="Center" VerticalAlignment="Center" Orientation="Horizontal" Margin="0,0,0,20">
|
|
|
+ <Button Content="Transfer" Height="25" Width="80" Click="Button_Click" Margin="0,0,30,0"/>
|
|
|
+ <Button Content="Cancel" Height="25" Width="80" Click="Button_Click_1"/>
|
|
|
+ </StackPanel>
|
|
|
</Grid>
|
|
|
</Border>
|
|
|
</Window>
|