WaferDialogView.xaml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <Window x:Class="Venus_MainPages.Views.WaferDialogView"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. mc:Ignorable="d"
  7. AllowsTransparency="True"
  8. WindowStyle="None"
  9. WindowStartupLocation="CenterOwner"
  10. xmlns:local="clr-namespace:Venus_MainPages.Views"
  11. xmlns:ctrl="http://OpenSEMI.Ctrlib.com/presentation"
  12. d:DesignHeight="300" d:DesignWidth="400">
  13. <Border BorderBrush="#006bb1" BorderThickness="5">
  14. <Grid Background="#dcf3f5">
  15. <Grid.RowDefinitions>
  16. <RowDefinition Height="2*"></RowDefinition>
  17. <RowDefinition Height=".5*"></RowDefinition>
  18. <RowDefinition Height="1*"></RowDefinition>
  19. <RowDefinition Height="1*"></RowDefinition>
  20. <RowDefinition Height="1*"></RowDefinition>
  21. </Grid.RowDefinitions>
  22. <Grid.ColumnDefinitions>
  23. <ColumnDefinition Width="1*"/>
  24. <ColumnDefinition Width="1*"/>
  25. <ColumnDefinition Width="1*"/>
  26. </Grid.ColumnDefinitions>
  27. <TextBlock Grid.ColumnSpan="3" Text="Please Confirm Return Wafer" VerticalAlignment="Center" Margin="20,0" FontWeight="Bold" FontSize="18"></TextBlock>
  28. <StackPanel Grid.Row="2" Grid.ColumnSpan="3" Orientation="Horizontal" VerticalAlignment="Center">
  29. <ctrl:CheckBoxExt x:Name="cancooling" Content="Need Cooling" Width="120" Margin="5,0,0,0" Checked="needcooling_Checked" Unchecked="needcooling_unChecked"></ctrl:CheckBoxExt>
  30. <TextBlock Text="Cooling Time" Width="80"/>
  31. <ctrl:TextBoxEx x:Name="coolingtime" IsEnabled="False" Width="50" InputMethod.IsInputMethodEnabled="False" PreviewTextInput="TextBox_PreviewTextInput"></ctrl:TextBoxEx>
  32. <TextBlock Text="s" Margin="5,0"/>
  33. </StackPanel>
  34. <StackPanel Grid.Row="3" Grid.ColumnSpan="3" Orientation="Horizontal" VerticalAlignment="Center">
  35. <ctrl:CheckBoxExt x:Name="canalign" Content="Need Align" Width="120" Margin="5,0,0,0" Checked="needalign_Checked" Unchecked="needalign_unChecked"></ctrl:CheckBoxExt>
  36. <TextBlock Text="Align Angel" Width="80"/>
  37. <ctrl:TextBoxEx x:Name="alignangel" IsEnabled="False" Width="50" InputMethod.IsInputMethodEnabled="False" PreviewTextInput="TextBox_PreviewTextInput"></ctrl:TextBoxEx>
  38. <TextBlock Text="D" Margin="5,0"/>
  39. </StackPanel>
  40. <Button Grid.Row="4" Grid.Column="1" Content="Return" Margin="5" Click="Button_Click" ></Button>
  41. <Button Grid.Row="4" Grid.Column="2" Content="Cancel" Margin="5" Click="Button_Click_1"></Button>
  42. </Grid>
  43. </Border>
  44. </Window>