WaferDialogView.xaml 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <Window x:Class="CyberX8_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. xmlns:prism="http://prismlibrary.com/"
  7. mc:Ignorable="d"
  8. prism:ViewModelLocator.AutoWireViewModel="True"
  9. AllowsTransparency="True"
  10. WindowStyle="None"
  11. WindowStartupLocation="CenterOwner"
  12. xmlns:local="clr-namespace:CyberX8_MainPages.Views"
  13. xmlns:ctrl="http://OpenSEMI.Ctrlib.com/presentation"
  14. d:DesignHeight="300" d:DesignWidth="400">
  15. <Border BorderBrush="#006bb1" BorderThickness="5">
  16. <Grid Background="#dcf3f5">
  17. <Grid.RowDefinitions>
  18. <RowDefinition Height="2*"></RowDefinition>
  19. <RowDefinition Height="1*"></RowDefinition>
  20. <RowDefinition Height="1*"></RowDefinition>
  21. <RowDefinition Height="1*"></RowDefinition>
  22. </Grid.RowDefinitions>
  23. <TextBlock Text="{Binding ConfirmText }" VerticalAlignment="Center" Margin="20,0" FontWeight="Bold" FontSize="18"></TextBlock>
  24. <StackPanel Grid.Row="2" Grid.ColumnSpan="3" Orientation="Horizontal" VerticalAlignment="Center" Visibility="Hidden">
  25. <ctrl:CheckBoxExt x:Name="cancooling" Content="Need Cooling" Width="120" Margin="5,0,0,0" Checked="needcooling_Checked" Unchecked="needcooling_unChecked"></ctrl:CheckBoxExt>
  26. <TextBlock Text="Cooling Time" Width="80"/>
  27. <ctrl:TextBoxEx x:Name="coolingtime" IsEnabled="False" Width="50" InputMethod.IsInputMethodEnabled="False" PreviewTextInput="TextBox_PreviewTextInput"></ctrl:TextBoxEx>
  28. <TextBlock Text="s" Margin="5,0"/>
  29. </StackPanel>
  30. <StackPanel Grid.Row="1" Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Center">
  31. <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>
  32. <TextBlock Text="Align Angel" Width="80"/>
  33. <ctrl:TextBoxEx x:Name="alignangel" IsEnabled="False" Width="50" InputMethod.IsInputMethodEnabled="False" PreviewTextInput="TextBox_PreviewTextInput"></ctrl:TextBoxEx>
  34. <TextBlock Text="D" Margin="5,0"/>
  35. </StackPanel>
  36. <StackPanel Grid.Row="4" HorizontalAlignment="Center" VerticalAlignment="Center" Orientation="Horizontal" Margin="0,0,0,20">
  37. <Button Content="Transfer" Height="25" Width="80" Click="Button_Click" Margin="0,0,30,0"/>
  38. <Button Content="Cancel" Height="25" Width="80" Click="Button_Click_1"/>
  39. </StackPanel>
  40. </Grid>
  41. </Border>
  42. </Window>