|
@@ -0,0 +1,148 @@
|
|
|
+<UserControl x:Class="Venus_MainPages.Views.WaferAssociationSEUnit"
|
|
|
+ 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:unity="clr-namespace:Venus_MainPages.Unity"
|
|
|
+ xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity"
|
|
|
+ mc:Ignorable="d"
|
|
|
+ xmlns:sys="clr-namespace:System;assembly=mscorlib"
|
|
|
+ d:DesignHeight="450" d:DesignWidth="433" x:Name="WaferInfoUnit">
|
|
|
+ <Grid>
|
|
|
+ <Grid.ColumnDefinitions>
|
|
|
+ <ColumnDefinition/>
|
|
|
+ </Grid.ColumnDefinitions>
|
|
|
+ <Grid VerticalAlignment="Top">
|
|
|
+ <Grid.RowDefinitions>
|
|
|
+ <RowDefinition Height="Auto"></RowDefinition>
|
|
|
+ <RowDefinition Height="Auto"></RowDefinition>
|
|
|
+ </Grid.RowDefinitions>
|
|
|
+ <Grid unity:GridOptions.ShowBorder="True" unity:GridOptions.LineBrush="Black" unity:GridOptions.LineThickness="1">
|
|
|
+ <Grid.RowDefinitions>
|
|
|
+ <RowDefinition Height="30"></RowDefinition>
|
|
|
+ <RowDefinition Height="30"></RowDefinition>
|
|
|
+ <RowDefinition Height="0"></RowDefinition>
|
|
|
+ <RowDefinition Height="0"></RowDefinition>
|
|
|
+ <RowDefinition Height="30"></RowDefinition>
|
|
|
+ <RowDefinition Height="30"></RowDefinition>
|
|
|
+ <RowDefinition Height="Auto"></RowDefinition>
|
|
|
+ <RowDefinition Height="Auto"></RowDefinition>
|
|
|
+ </Grid.RowDefinitions>
|
|
|
+
|
|
|
+ <StackPanel Grid.Row="0" Orientation="Horizontal">
|
|
|
+ <TextBlock Text="Lot ID:" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="15" FontFamily="Arial" VerticalAlignment="Center" Width="75"></TextBlock>
|
|
|
+ <TextBox Text="{Binding WFInfo.LotId, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="15" FontFamily="Arial" VerticalAlignment="Center" Width="200" IsEnabled="False"></TextBox>
|
|
|
+ </StackPanel>
|
|
|
+ <StackPanel Grid.Row="1" Orientation="Horizontal">
|
|
|
+
|
|
|
+ <TextBlock Text="Sequence:" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="15" FontFamily="Arial" VerticalAlignment="Center" Width="80"></TextBlock>
|
|
|
+
|
|
|
+ <ComboBox Width="240" x:Name="cb" DropDownOpened="cb_DropDownOpened" SelectionChanged="cb_SelectionChanged"/>
|
|
|
+
|
|
|
+
|
|
|
+ </StackPanel>
|
|
|
+
|
|
|
+ <StackPanel Grid.Row="4" Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
|
|
|
+ <Button Content="Select All" Height="25" Command="{Binding SelectAllCommand}" CommandParameter="{Binding ElementName=WaferInfoUnit,Path=WFInfo}" Width="125" Click="SelectAllButton_Click"/>
|
|
|
+ <Button Content="DeSelect All" Height="25" Command="{Binding UnSelectAllCommand}" CommandParameter="{Binding ElementName=WaferInfoUnit,Path=WFInfo}" Width="125" Click="UnSelectAllButton_Click"/>
|
|
|
+ </StackPanel>
|
|
|
+
|
|
|
+ <Grid Grid.Row="5">
|
|
|
+ <Grid.ColumnDefinitions>
|
|
|
+ <ColumnDefinition Width="1*"/>
|
|
|
+ <ColumnDefinition Width="2*"/>
|
|
|
+ <ColumnDefinition Width="1*"/>
|
|
|
+ <ColumnDefinition Width="2*"/>
|
|
|
+ </Grid.ColumnDefinitions>
|
|
|
+ <TextBlock Grid.Column="0" Text="Name" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="15" FontFamily="Arial" VerticalAlignment="Center"></TextBlock>
|
|
|
+
|
|
|
+ <TextBox Grid.Column="1" IsEnabled="True" Text="{Binding WFInfo.JobID, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}" TextAlignment="Center" VerticalContentAlignment="Center"/>
|
|
|
+
|
|
|
+ <TextBox Grid.Column="3" IsEnabled="True" Text="{Binding WFInfo.JobStatus, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}" TextAlignment="Center" VerticalContentAlignment="Center"/>
|
|
|
+
|
|
|
+ <TextBlock Text="Status" Grid.Column="2" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="15" FontFamily="Arial" VerticalAlignment="Center"></TextBlock>
|
|
|
+
|
|
|
+ </Grid>
|
|
|
+ <StackPanel Grid.Row="6" Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center" >
|
|
|
+ <Button Content="Create Job" Width="120" Height="25" Command="{Binding CreateJobCommand}" CommandParameter="{Binding ElementName=WaferInfoUnit,Path=WFInfo}"/>
|
|
|
+ <Button Content="Abort Job" Width="120" Height="25" Command="{Binding AbortJobCommand}" CommandParameter="{Binding WFInfo.JobID,RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}"/>
|
|
|
+ </StackPanel>
|
|
|
+ <StackPanel Grid.Row="7" Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Center">
|
|
|
+ <Button Content="Start" Width="100" Height="25" Command="{Binding StartCommand}" CommandParameter="{Binding ElementName=WaferInfoUnit,Path=WFInfo}"/>
|
|
|
+ <Button Content="Stop" Width="100" Height="25" Margin="30,0,0,0" Command="{Binding StopCommand}" CommandParameter="{Binding ElementName=WaferInfoUnit,Path=WFInfo}"/>
|
|
|
+ <Button Content="Abort" Width="100" Height="25" Margin="30,0,0,0" Command="{Binding AbortCommand}" CommandParameter="{Binding ElementName=WaferInfoUnit,Path=WFInfo}"/>
|
|
|
+ </StackPanel>
|
|
|
+ </Grid>
|
|
|
+
|
|
|
+ <ListBox Grid.Row="1"
|
|
|
+
|
|
|
+ ItemsSource="{Binding ElementName=WaferInfoUnit,Path=WFInfo.ModuleData.WaferManager.Wafers}" Name="list1">
|
|
|
+ <ListBox.Resources>
|
|
|
+ <Style TargetType="ListBoxItem" BasedOn="{StaticResource ResourceKey={x:Type ListBoxItem}}">
|
|
|
+ <Setter Property="Rectangle.StrokeThickness" Value="0"/>
|
|
|
+ </Style>
|
|
|
+ </ListBox.Resources>
|
|
|
+ <ListBox.ItemTemplate>
|
|
|
+ <DataTemplate>
|
|
|
+ <Grid Height="18">
|
|
|
+ <Grid.ColumnDefinitions>
|
|
|
+ <ColumnDefinition Width="Auto"></ColumnDefinition>
|
|
|
+ <ColumnDefinition Width="Auto"></ColumnDefinition>
|
|
|
+ <ColumnDefinition Width="Auto"></ColumnDefinition>
|
|
|
+ </Grid.ColumnDefinitions>
|
|
|
+ <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1" Width="30" Padding="5,1">
|
|
|
+ <TextBlock Name="txtSlotIndex" Text="{Binding SlotIndex}" Foreground="{DynamicResource FG_Black}" FontSize="12" FontFamily="Arial" VerticalAlignment="Center"></TextBlock>
|
|
|
+ </Border>
|
|
|
+ <Border Grid.Column="1" BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Width="250" >
|
|
|
+ <Border.Style>
|
|
|
+ <Style>
|
|
|
+ <Style.Triggers>
|
|
|
+ <DataTrigger Binding="{Binding WaferStatus}" Value="0">
|
|
|
+ <Setter Property="Border.Background" Value="AliceBlue"/>
|
|
|
+ </DataTrigger>
|
|
|
+ <DataTrigger Binding="{Binding WaferStatus}" Value="1">
|
|
|
+ <Setter Property="Border.Background" Value="SkyBlue"/>
|
|
|
+ </DataTrigger>
|
|
|
+ </Style.Triggers>
|
|
|
+ </Style>
|
|
|
+ </Border.Style>
|
|
|
+ <TextBlock Name="txtSeqName" ToolTip="{Binding RelativeSource={RelativeSource Self}, Path=Text}" Text="{Binding SequenceName}" Foreground="{DynamicResource FG_Black}" FontSize="12" FontFamily="Arial" HorizontalAlignment="Center" VerticalAlignment="Center"></TextBlock>
|
|
|
+ </Border>
|
|
|
+
|
|
|
+ <Border Grid.Column="2" BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,1,1,1" Width="110" Padding="5,1" >
|
|
|
+ <Button Width="60" Height="14" Command="{Binding Path=DataContext.SetSequenceCommand, RelativeSource={RelativeSource Mode=FindAncestor,AncestorType=ListBox}}" CommandParameter="{Binding}" IsEnabled="{Binding ElementName=WaferInfoUnit,Path=ButtonIsEnable}">
|
|
|
+ <Button.Style>
|
|
|
+ <Style TargetType="{x:Type Button}" BasedOn="{StaticResource ResourceKey={x:Type Button}}">
|
|
|
+ <Setter Property="Button.Content" Value="Remove"/>
|
|
|
+ <Setter Property="FontSize" Value="10" />
|
|
|
+ <Style.Triggers>
|
|
|
+ <DataTrigger Binding="{Binding ElementName=txtSeqName, Path=Text}" Value="{x:Static sys:String.Empty}">
|
|
|
+ <Setter Property="Button.Content" Value="Set"/>
|
|
|
+ </DataTrigger>
|
|
|
+ <DataTrigger Binding="{Binding WaferStatus}" Value="0">
|
|
|
+ <Setter Property="Button.IsEnabled" Value="False"/>
|
|
|
+ </DataTrigger>
|
|
|
+ </Style.Triggers>
|
|
|
+ </Style>
|
|
|
+ </Button.Style>
|
|
|
+ </Button>
|
|
|
+ </Border>
|
|
|
+ </Grid>
|
|
|
+ </DataTemplate>
|
|
|
+ </ListBox.ItemTemplate>
|
|
|
+ </ListBox>
|
|
|
+
|
|
|
+ <!--<Grid>
|
|
|
+ <Grid.Style>
|
|
|
+ <Style>
|
|
|
+ <Style.Triggers>
|
|
|
+ <DataTrigger Binding="{Binding WFInfo.ModuleData.IsInstalled, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}" Value="false">
|
|
|
+ <Setter Property="Grid.Visibility" Value="Collapsed"/>
|
|
|
+ </DataTrigger>
|
|
|
+ </Style.Triggers>
|
|
|
+ </Style>
|
|
|
+ </Grid.Style>
|
|
|
+ </Grid>-->
|
|
|
+ </Grid>
|
|
|
+ </Grid>
|
|
|
+</UserControl>
|