123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- <UserControl xmlns:Control="clr-namespace:MECF.Framework.UI.Core.Control;assembly=MECF.Framework.UI.Core"
- xmlns:UserControls="clr-namespace:CyberX8_Themes.UserControls;assembly=CyberX8_Themes"
- x:Class="CyberX8_MainPages.Views.SequenceRecipeView"
- 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:local="clr-namespace:CyberX8_MainPages.Views"
- xmlns:prism="http://prismlibrary.com/"
- xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
- xmlns:converters="clr-namespace:CyberX8_MainPages.Converters"
- prism:ViewModelLocator.AutoWireViewModel="True"
- mc:Ignorable="d"
- d:DesignHeight="700" d:DesignWidth="1800" Loaded="UserControl_Loaded">
- <UserControl.Resources>
- <converters:BoolReverseConverter x:Key="boolReverseConverter"/>
- </UserControl.Resources>
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="100"></RowDefinition>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="50"></ColumnDefinition>
- <ColumnDefinition Width="400"></ColumnDefinition>
- <ColumnDefinition Width="700"></ColumnDefinition>
- <ColumnDefinition Width="500"></ColumnDefinition>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <UserControls:RecipeFileLoadControl Grid.Row="1" Grid.Column="1" Title="Seq Recipe" RecipeNodes="{Binding RecipeNodes}" OperationCommand="{Binding OperationCommand}"
- RecipeLocation="{Binding CurrentNode.RecipeLocation}" EditEnable="{Binding EditEnable}" CreateEnable="{Binding CreateEnable}" RecipeFileName="{Binding CurrentNode.FileName}"
- CreateCommand="{Binding CreateCommand}" EditCommand="{Binding EditCommand}"/>
- <Grid Grid.Row="1" Grid.Column="2">
- <Grid.RowDefinitions>
- <RowDefinition Height="70"></RowDefinition>
- <RowDefinition Height="70"></RowDefinition>
- <RowDefinition Height="70"></RowDefinition>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <GroupBox Header="PPID" Grid.Row="0">
- <TextBlock Text="{Binding Recipe.Ppid}" FontSize="20" VerticalAlignment="Center" TextAlignment="Center">
- </TextBlock>
- </GroupBox>
- <GroupBox Header="Description" Grid.Row="1">
- <TextBlock Text="{Binding Recipe.Description}" FontSize="18" VerticalAlignment="Center" TextAlignment="Center">
- </TextBlock>
- </GroupBox>
- <Grid Grid.Row="2">
- <Grid.ColumnDefinitions>
- <ColumnDefinition/>
- <ColumnDefinition/>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <GroupBox Header="Author" Grid.Column="0">
- <TextBlock Text="{Binding Recipe.Author}" VerticalAlignment="Center" TextAlignment="Center"/>
- </GroupBox>
- <GroupBox Header="CreateDate" Grid.Column="1">
- <TextBlock Text="{Binding Recipe.CreateDate,StringFormat={}{0:yyyy-MM-dd HH:mm:ss}}" VerticalAlignment="Center" TextAlignment="Center"/>
- </GroupBox>
- <GroupBox Header="CreateDate" Grid.Column="2">
- <TextBlock Text="{Binding Recipe.SaveDate,StringFormat={}{0:yyyy-MM-dd HH:mm:ss}}" VerticalAlignment="Center" TextAlignment="Center"/>
- </GroupBox>
- </Grid>
- <Grid Grid.Row="3">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="200"></ColumnDefinition>
- <ColumnDefinition Width="100"></ColumnDefinition>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <GroupBox Header="Process Sequece" Grid.Column="0">
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,1,1,0" Background="{DynamicResource Table_BG_Content}" Padding="5,1">
- <ListBox ItemsSource="{Binding ProcessRecipes,Mode=TwoWay}" SelectedIndex="{Binding SelectedProcessRecipeIndex,Mode=TwoWay}" SelectedItem="{Binding SelectedProcessRecipe}">
- </ListBox>
- </Border>
- </GroupBox>
- <Grid Grid.Column="1" IsEnabled="{Binding Enable}">
- <Button Style="{StaticResource SysBtnStyle}" Content="Add Recipe" Height="35" Margin="2,62,2,294" Command="{Binding AddRecipeCommand}"></Button>
- <Button Style="{StaticResource SysBtnStyle}" Content="Remove Recipe" Height="35" Margin="2,121,2,234" Command="{Binding RemoveRecipeCommand}"></Button>
- <Button Style="{StaticResource SysBtnStyle}" Content="Move Up" Height="35" Margin="2,220,2,135" Command="{Binding MoveUpCommand}"></Button>
- <Button Style="{StaticResource SysBtnStyle}" Content="Move Down" Height="35" Margin="2,272,2,83" Command="{Binding MoveDownCommand}"></Button>
- </Grid>
- <GroupBox Header="Avaible Recipes" Grid.Column="2">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="50"></RowDefinition>
- <RowDefinition></RowDefinition>
- <RowDefinition Height="50"></RowDefinition>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <Label Grid.Row="0" Content="Recipe Types" VerticalAlignment="Center"></Label>
- <Label Grid.Row="2" Content="Recipes" VerticalAlignment="Center"></Label>
- <Border Grid.Row="1" BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,1,1,1" Background="{DynamicResource Table_BG_Content}" Padding="5,1">
- <ListBox ItemsSource="{Binding AvaibleRecipeTypeLst}" SelectedItem="{Binding SelectedAvaibleRecipeType}">
- </ListBox>
- </Border>
- <Border Grid.Row="3" BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,1,1,0" Background="{DynamicResource Table_BG_Content}" Padding="5,1">
- <ListBox ItemsSource="{Binding SubRecipeNodes}" SelectedItem="{Binding SelectedSubRecipe}">
- </ListBox>
- </Border>
- </Grid>
- </GroupBox>
- </Grid>
- </Grid>
- <Grid Grid.Row="1" Grid.Column="3">
- <Grid.RowDefinitions>
- <RowDefinition Height="70"></RowDefinition>
- <RowDefinition Height="70"></RowDefinition>
- <RowDefinition Height="70"></RowDefinition>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <Grid Grid.Row="0" IsEnabled="{Binding Enable}">
- <Grid.ColumnDefinitions>
- <ColumnDefinition/>
- <ColumnDefinition/>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <Button Grid.Column="0" Style="{StaticResource SysBtnStyle}" Content="Save" Height="35" Width="100" Command="{Binding SaveRecipeCommand}"></Button>
- <Button Grid.Column="1" Style="{StaticResource SysBtnStyle}" Content="SaveAs" Height="35" Width="100" Command="{Binding SaveAsRecipeCommand}"></Button>
- </Grid>
- <Grid Grid.Row="3">
- <Grid.RowDefinitions>
- <RowDefinition Height="70"></RowDefinition>
- <RowDefinition Height="70"></RowDefinition>
- <RowDefinition Height="70"></RowDefinition>
- <RowDefinition Height="70"></RowDefinition>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <GroupBox Header="Substrate Size" IsEnabled="{Binding Enable}">
- <ComboBox Height="30" Margin="0,0,20,0" ItemsSource="{Binding WaferSizeLst}" SelectedItem="{Binding Recipe.SubstrateSize}">
- </ComboBox>
- </GroupBox>
- <GroupBox Grid.Row="1" Header="LS Type" IsEnabled="{Binding Enable}">
- <ComboBox Height="30" Margin="0,0,20,0" ItemsSource="{Binding CrsTypeLst}" SelectedItem="{Binding Recipe.CrsType}">
- </ComboBox>
- </GroupBox>
- <GroupBox Grid.Row="2" Header="Single Wafer shuttle Side" IsEnabled="{Binding Enable}">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="23*"/>
- <ColumnDefinition Width="221*"/>
- </Grid.ColumnDefinitions>
- <RadioButton Content="SideB" Height="35" Width="100" VerticalContentAlignment="Center" Margin="71,6,271,7" IsChecked="{Binding Recipe.LastSingleWaferToSideB}" Grid.Column="1"></RadioButton>
- <RadioButton Content="SideA" Height="35" Width="100" VerticalContentAlignment="Center" Margin="207,6,135,7" IsChecked="{Binding Recipe.LastSingleWaferToSideB,Converter={StaticResource boolReverseConverter}}" Grid.Column="1"></RadioButton>
- </Grid>
- </GroupBox>
- <UserControls:GroupTextBoxControl Grid.Row="3" Title="Alignment Angle" MinValue="0" MaxValue="360" IntValue="{Binding Recipe.AlignmentAngle,Mode=TwoWay}" ValidResult="{Binding PropertyValidResultDic[AlignmentAngle],Mode=TwoWay}" Unit="deg" />
- </Grid>
- </Grid>
- </Grid>
- </UserControl>
|