123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- <UserControl x:Class="CyberX8_MainPages.Views.PrewetHomePageView"
- 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:UserControls="clr-namespace:CyberX8_Themes.UserControls;assembly=CyberX8_Themes"
- xmlns:converters="clr-namespace:CyberX8_Themes.Converters;assembly=CyberX8_Themes"
- prism:ViewModelLocator.AutoWireViewModel="True"
- xmlns:prism="http://prismlibrary.com/"
- xmlns:local="clr-namespace:CyberX8_MainPages.Views"
- mc:Ignorable="d" x:Name="self"
- d:DesignHeight="800" d:DesignWidth="1850">
- <UserControl.Resources>
- <converters:BoolToColor x:Key="boolToColor"/>
- <converters:RecipeIconConverter x:Key="recipeIconConverter"/>
- </UserControl.Resources>
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="5"/>
- <RowDefinition Height="190"/>
- <RowDefinition Height="200"/>
- <RowDefinition Height="175"/>
- <RowDefinition Height="230"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="610"></ColumnDefinition>
- <ColumnDefinition Width="400"></ColumnDefinition>
- <ColumnDefinition Width="610"></ColumnDefinition>
- <ColumnDefinition Width="250"></ColumnDefinition>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <Grid Grid.Row="1" Grid.Column="3">
- <Grid.RowDefinitions>
- <RowDefinition Height="50"></RowDefinition>
- <RowDefinition Height="60"></RowDefinition>
- <RowDefinition Height="60"></RowDefinition>
- </Grid.RowDefinitions>
- <Grid Grid.Row="0">
- <Label Content="Prewet1" FontSize="30" FontWeight="Bold" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" VerticalAlignment="Bottom" HorizontalAlignment="Center"></Label>
- </Grid>
- <Grid Grid.Row="1">
- <Button IsEnabled="{Binding IsAutoEnabled}" Style="{StaticResource SysBtnStyle}" Height="30" Width="120" HorizontalAlignment="Center" Content="Initialize" Command="{Binding InitializeCommand}" />
- </Grid>
- </Grid>
- <Grid Grid.Row="1" Grid.Column="3" Grid.RowSpan="2" Margin="0,110,0,0">
- <Label Content="Operating Mode" FontSize="15" FontWeight="Bold" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" VerticalAlignment="Top" HorizontalAlignment="Center"></Label>
- <UserControls:OperatingModeControl HorizontalAlignment="Center" Margin="10,0,30,80" VerticalAlignment="Center"
- ModuleName="{Binding Module}"
- OperationModeValue="{Binding PrewetPersistent.OperatingMode}"
- IsManual="{Binding IsManualOperationMode,Mode=TwoWay}"/>
- </Grid>
- <Grid Grid.Row="3" Grid.Column="3">
- <Grid.RowDefinitions>
- <RowDefinition Height="30"></RowDefinition>
- <RowDefinition Height="140"></RowDefinition>
- </Grid.RowDefinitions>
- <Grid Grid.Row="0">
-
- </Grid>
- <Grid Grid.Row="1">
-
- </Grid>
- </Grid>
- <Grid Grid.Row="1" Grid.Column="0">
- <UserControls:SrdOverviewInformationPanel HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Center"
- ModuleTitle="{Binding Module}" IsEnabled="{Binding IsEnabled}"
- RecipeContentValue="{Binding CurrentRecipe}"
- TimeRemainingValue="{Binding TimeRemaining}"
- TotalTimeValue="{Binding TotalTime}"
- StateValue="{Binding State}"
- OperatingModeValue="{Binding PrewetPersistent.OperatingMode}"
- RecipeModeValue="{Binding PrewetPersistent.RecipeOperatingMode}" />
- </Grid>
- <Grid Grid.Row="1" Grid.Column="1">
- <UserControls:WaferHolderPanel HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Center"
- ModuleName="{Binding Module}" IsEnabled="{Binding IsEnabled}"
- SeqRecipeValue="{Binding SeqRecipe}"
- WaferHolderInfo="{Binding WaferHolderInfo}"
- />
- </Grid>
- <Grid Grid.Row="1" Grid.Column="2" Grid.RowSpan="2">
- <UserControls:RecipeControl HorizontalAlignment="Center" Margin="10,0,0,0" VerticalAlignment="Center"
- ModuleName="{Binding Module}" IsEnabled="{Binding IsEnabled}"
- ModuleTitle="{Binding RecipeModuleName}"
- RecipeType="{Binding RecipeType}"
- SelectedRecipeNode="{Binding SelectedRecipeNode,Mode=TwoWay}"
- AchievedCycleTimes="{Binding AchievedRunRecipeCycle}"
- CurrentOperationMode="{Binding PrewetPersistent.OperatingMode}"
- NumberOfSelectedRecipeScans="{Binding NumberOfRecipeScans,Mode=TwoWay}"
- RecipeModeValue ="{Binding PrewetPersistent.RecipeOperatingMode}"/>
- </Grid>
- <Grid Grid.Row="2" Grid.Column="0" Grid.RowSpan="3">
- <UserControls:PrewetLeftSideControl HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Center"
- ModuleName="{Binding Module}" IsEnabled="{Binding IsEnabled}"
- PumpData="{Binding PrewetPumpData}"
- IsManual="{Binding IsManualOperationMode}"
- LinmotPostion="{Binding LinmotCurrentPosition}"
- StatusValue="{Binding Status}"
- StateMachine="{Binding StateMachine}"
- State="{Binding State}"
- CurrentScanedCompleted="{Binding ScanComplete}"
- KeepWetLimit="{Binding KeepWetLimitTime}"
- />
- </Grid>
- <Grid Grid.Row="2" Grid.Column="1" Grid.RowSpan="3" Grid.ColumnSpan="2">
- <UserControls:PrewetUIControl HorizontalAlignment="Left" VerticalAlignment="Bottom" Margin="-70,0,0,20"
- PumpData="{Binding PrewetPumpData}" IsEnabled="{Binding IsEnabled}"
- YaxleData="{Binding UILinmotYPosition}" IsWaferHolder="{Binding IsWaferHolder}"
- ModuleName="{Binding Module}"
- IsError="{Binding IsErrorState}"
- />
- </Grid>
- <Grid Grid.Row="3" Grid.Column="2" Grid.RowSpan="2">
- <UserControls:PrewetMotionPanel HorizontalAlignment="Right" Margin="10,20,10,0" VerticalAlignment="Top"
- ModuleName="{Binding Module}" IsEnabled="{Binding IsEnabled}"
- StatusWord="{Binding StatusWord}"
- CurrentScanedTimes="{Binding ScanCount}"
- ScanSpeed="{Binding UpMaxSpeed}"
- LinmotName="{Binding LinmotName}"/>
- </Grid>
- </Grid>
- </UserControl>
|