123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- <UserControl x:Class="PunkHPX8_MainPages.Views.VPWCellView"
- 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:PunkHPX8_Themes.UserControls;assembly=PunkHPX8_Themes"
- xmlns:converters="clr-namespace:PunkHPX8_Themes.Converters;assembly=PunkHPX8_Themes"
- xmlns:prism="http://prismlibrary.com/"
- prism:ViewModelLocator.AutoWireViewModel="True"
- xmlns:local="clr-namespace:PunkHPX8_MainPages.Views"
- mc:Ignorable="d" x:Name="self"
- d:DesignHeight="850" 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="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 VpwCellPersistent.OperatingMode}"
- RecipeModeValue="{Binding VpwCellPersistent.RecipeOperatingMode}" />
- </Grid>
- <Grid Grid.Row="1" Grid.Column="1">
- <UserControls:WaferOverviewPanel HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Center"
- IsEnabled="{Binding IsEnabled}"
- />
- </Grid>
- <Grid Grid.Row="2" Grid.Column="0" Grid.RowSpan="2">
- <UserControls:VPWCellStatusControl HorizontalAlignment="Left" Margin="10,-50,0,0" VerticalAlignment="Center"
- IsEnabled="True"
- WaterPressure="{Binding VpwMainCommonData.DiwPressure}"
- ChamberClose="{Binding VpwMainCommonData.ChamberClosed}"
- ChamberOpen="{Binding VpwMainCommonData.ChamberOpened}"
- MachineState="{Binding StateMachine}"
- />
- </Grid>
- <Grid Grid.Row="2" Grid.Column="0" Grid.ColumnSpan="2" Grid.RowSpan="3" HorizontalAlignment="Center" Margin="-120,100,0,0">
- <UserControls:VPWCellUIControl ModuleName="{Binding Module}"
- DripValve="{Binding VpwCellCommonData.FlowDrip}"
- SmallValve="{Binding VpwCellCommonData.FlowSmall}"
- LargeValve="{Binding VpwCellCommonData.FlowLarge}"
- VentValve="{Binding VpwCellCommonData.VentValve}"
- DrainValve="{Binding VpwCellCommonData.DrainValve}"
- VacuumValve="{Binding VpwCellCommonData.VacuumValve}"
-
-
- ></UserControls:VPWCellUIControl>
- </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="3" Grid.RowSpan="2" Margin="25,0,0,80" VerticalAlignment="Center">
- <UserControls:RecipeModeControl Margin="5,40,35,10"
- ModuleName="{Binding Module}"
- RecipeModeValue="{Binding VpwCellPersistent.RecipeOperatingMode}"
- ></UserControls:RecipeModeControl>
- </Grid>
- <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="{Binding Module}" FontSize="30" FontWeight="Bold" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" VerticalAlignment="Bottom" HorizontalAlignment="Center"></Label>
- </Grid>
- <Grid Grid.Row="1">
- <Button IsEnabled="True" 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 VpwCellPersistent.OperatingMode}"
- IsManual="{Binding IsManualOperationMode,Mode=TwoWay}"/>
- </Grid>
- <Grid Grid.Row="3" Grid.Column="3" >
- <Button Margin="0,20,0,0" IsEnabled="True" VerticalAlignment="Top" Style="{StaticResource SysBtnStyle}" Height="30" Width="120" HorizontalAlignment="Center" Content="Home" Command="{Binding HomeCommand}" />
- </Grid>
- <Label Grid.Row="2" Grid.Column="3" Margin="0,0,0,0" Content="Recipe Mode" FontSize="15" FontWeight="Bold" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" VerticalAlignment="Center" HorizontalAlignment="Center"></Label>
- </Grid>
- </UserControl>
|