|
@@ -1,20 +1,21 @@
|
|
|
-<UserControl x:Class="Venus_MainPages.Views.WaferDialog"
|
|
|
+<Window x:Class="Venus_MainPages.Views.WaferDialogView"
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
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/"
|
|
|
- prism:ViewModelLocator.AutoWireViewModel="True"
|
|
|
+ xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
+ mc:Ignorable="d"
|
|
|
+ AllowsTransparency="True"
|
|
|
+ WindowStyle="None"
|
|
|
xmlns:local="clr-namespace:Venus_MainPages.Views"
|
|
|
- mc:Ignorable="d"
|
|
|
- d:DesignHeight="300" d:DesignWidth="450">
|
|
|
+ xmlns:ctrl="http://OpenSEMI.Ctrlib.com/presentation"
|
|
|
+ d:DesignHeight="300" d:DesignWidth="400">
|
|
|
<Border BorderBrush="#006bb1" BorderThickness="5">
|
|
|
<Grid Background="#dcf3f5">
|
|
|
<Grid.RowDefinitions>
|
|
|
+ <RowDefinition Height="2*"></RowDefinition>
|
|
|
+ <RowDefinition Height=".5*"></RowDefinition>
|
|
|
<RowDefinition Height="1*"></RowDefinition>
|
|
|
<RowDefinition Height="1*"></RowDefinition>
|
|
|
- <RowDefinition Height=".5*"></RowDefinition>
|
|
|
- <RowDefinition Height=".5*"></RowDefinition>
|
|
|
<RowDefinition Height="1*"></RowDefinition>
|
|
|
</Grid.RowDefinitions>
|
|
|
<Grid.ColumnDefinitions>
|
|
@@ -22,22 +23,22 @@
|
|
|
<ColumnDefinition Width="1*"/>
|
|
|
<ColumnDefinition Width="1*"/>
|
|
|
</Grid.ColumnDefinitions>
|
|
|
- <TextBlock Grid.ColumnSpan="3" Text="{Binding Title}"></TextBlock>
|
|
|
+ <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">
|
|
|
- <CheckBox Content="Need Cooling" Width="120"></CheckBox>
|
|
|
+ <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"/>
|
|
|
- <TextBox Width="50"></TextBox>
|
|
|
+ <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">
|
|
|
- <CheckBox Content="Need Align" Width="120"></CheckBox>
|
|
|
+ <ctrl:CheckBoxExt x:Name="canalign" Content="Need Align" Width="120" Margin="5,0,0,0" Checked="needalign_Checked" Unchecked="needalign_unChecked"></ctrl:CheckBoxExt>
|
|
|
<TextBlock Text="Align Angel" Width="80"/>
|
|
|
- <TextBox Width="50"></TextBox>
|
|
|
+ <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="18"></Button>
|
|
|
- <Button Grid.Row="4" Grid.Column="2" Content="cancel" Margin="18"></Button>
|
|
|
+ <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>
|
|
|
</Grid>
|
|
|
</Border>
|
|
|
-</UserControl>
|
|
|
+</Window>
|