WaferDialog.xaml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <UserControl x:Class="Venus_MainPages.Views.WaferDialog"
  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. prism:ViewModelLocator.AutoWireViewModel="True"
  8. xmlns:local="clr-namespace:Venus_MainPages.Views"
  9. mc:Ignorable="d"
  10. d:DesignHeight="300" d:DesignWidth="450">
  11. <Border BorderBrush="#006bb1" BorderThickness="5">
  12. <Grid Background="#dcf3f5">
  13. <Grid.RowDefinitions>
  14. <RowDefinition Height="1*"></RowDefinition>
  15. <RowDefinition Height="1*"></RowDefinition>
  16. <RowDefinition Height=".5*"></RowDefinition>
  17. <RowDefinition Height=".5*"></RowDefinition>
  18. <RowDefinition Height="1*"></RowDefinition>
  19. </Grid.RowDefinitions>
  20. <Grid.ColumnDefinitions>
  21. <ColumnDefinition Width="1*"/>
  22. <ColumnDefinition Width="1*"/>
  23. <ColumnDefinition Width="1*"/>
  24. </Grid.ColumnDefinitions>
  25. <TextBlock Grid.ColumnSpan="3" Text="{Binding Title}"></TextBlock>
  26. <StackPanel Grid.Row="2" Grid.ColumnSpan="3" Orientation="Horizontal" VerticalAlignment="Center">
  27. <CheckBox Content="Need Cooling" Width="120"></CheckBox>
  28. <TextBlock Text="Cooling Time" Width="80"/>
  29. <TextBox Width="50"></TextBox>
  30. <TextBlock Text="s" Margin="5,0"/>
  31. </StackPanel>
  32. <StackPanel Grid.Row="3" Grid.ColumnSpan="3" Orientation="Horizontal" VerticalAlignment="Center">
  33. <CheckBox Content="Need Align" Width="120"></CheckBox>
  34. <TextBlock Text="Align Angel" Width="80"/>
  35. <TextBox Width="50"></TextBox>
  36. <TextBlock Text="D" Margin="5,0"/>
  37. </StackPanel>
  38. <Button Grid.Row="4" Grid.Column="1" Content="Return" Margin="18"></Button>
  39. <Button Grid.Row="4" Grid.Column="2" Content="cancel" Margin="18"></Button>
  40. </Grid>
  41. </Border>
  42. </UserControl>