1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <UserControl x:Class="Venus_MainPages.Views.WaferDialog"
- 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:local="clr-namespace:Venus_MainPages.Views"
- mc:Ignorable="d"
- d:DesignHeight="300" d:DesignWidth="450">
- <Border BorderBrush="#006bb1" BorderThickness="5">
- <Grid Background="#dcf3f5">
- <Grid.RowDefinitions>
- <RowDefinition Height="1*"></RowDefinition>
- <RowDefinition Height="1*"></RowDefinition>
- <RowDefinition Height=".5*"></RowDefinition>
- <RowDefinition Height=".5*"></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="{Binding Title}"></TextBlock>
- <StackPanel Grid.Row="2" Grid.ColumnSpan="3" Orientation="Horizontal" VerticalAlignment="Center">
- <CheckBox Content="Need Cooling" Width="120"></CheckBox>
- <TextBlock Text="Cooling Time" Width="80"/>
- <TextBox Width="50"></TextBox>
- <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>
- <TextBlock Text="Align Angel" Width="80"/>
- <TextBox Width="50"></TextBox>
- <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>
- </Grid>
- </Border>
- </UserControl>
|