1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <Window x:Class="CyberX8_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/"
- mc:Ignorable="d"
- prism:ViewModelLocator.AutoWireViewModel="True"
- AllowsTransparency="True"
- WindowStyle="None"
- WindowStartupLocation="CenterOwner"
- xmlns:local="clr-namespace:CyberX8_MainPages.Views"
- 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="1*"></RowDefinition>
- <RowDefinition Height="1*"></RowDefinition>
- <RowDefinition Height="1*"></RowDefinition>
- </Grid.RowDefinitions>
- <TextBlock Text="{Binding ConfirmText }" VerticalAlignment="Center" Margin="20,0" FontWeight="Bold" FontSize="18"></TextBlock>
- <StackPanel Grid.Row="2" Grid.ColumnSpan="3" Orientation="Horizontal" VerticalAlignment="Center" Visibility="Hidden">
- <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"/>
- <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="1" Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Center">
- <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>
- <TextBlock Text="Align Angel" Width="80"/>
- <ctrl:TextBoxEx x:Name="alignangel" IsEnabled="False" Width="50" InputMethod.IsInputMethodEnabled="False" PreviewTextInput="TextBox_PreviewTextInput"></ctrl:TextBoxEx>
- <TextBlock Text="D" Margin="5,0"/>
- </StackPanel>
- <StackPanel Grid.Row="4" HorizontalAlignment="Center" VerticalAlignment="Center" Orientation="Horizontal" Margin="0,0,0,20">
- <Button Content="Transfer" Height="25" Width="80" Click="Button_Click" Margin="0,0,30,0"/>
- <Button Content="Cancel" Height="25" Width="80" Click="Button_Click_1"/>
- </StackPanel>
- </Grid>
- </Border>
- </Window>
|