|
@@ -0,0 +1,275 @@
|
|
|
+<UserControl x:Class="VirgoUI.Client.Models.PMs.PMPIDView"
|
|
|
+ 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:i="http://schemas.microsoft.com/expression/2010/interactivity"
|
|
|
+ xmlns:ctrl="http://OpenSEMI.Ctrlib.com/presentation"
|
|
|
+ xmlns:cal="http://www.caliburn.org"
|
|
|
+ xmlns:deviceControl="clr-namespace:Aitex.Core.UI.DeviceControl;assembly=MECF.Framework.UI.Core"
|
|
|
+ xmlns:control="clr-namespace:Aitex.Core.UI.Control;assembly=MECF.Framework.UI.Core"
|
|
|
+ xmlns:parts="clr-namespace:VirgoUI.Controls.Parts"
|
|
|
+ xmlns:pMs="clr-namespace:VirgoUI.Client.Models.PMs"
|
|
|
+ xmlns:converters="clr-namespace:Aitex.Core.UI.Converters;assembly=MECF.Framework.UI.Core"
|
|
|
+ mc:Ignorable="d"
|
|
|
+ d:DesignHeight="770" d:DesignWidth="1920" >
|
|
|
+ <Grid Margin="10,20,10,10" >
|
|
|
+ <Grid.RowDefinitions>
|
|
|
+ <RowDefinition Height="380"/>
|
|
|
+ <RowDefinition Height="380"/>
|
|
|
+ </Grid.RowDefinitions>
|
|
|
+ <Grid.ColumnDefinitions>
|
|
|
+ <ColumnDefinition Width="940"/>
|
|
|
+ <ColumnDefinition Width="950"/>
|
|
|
+ </Grid.ColumnDefinitions>
|
|
|
+ <!--Foreline PID Study-->
|
|
|
+ <Canvas Background="#FFC5D0D8" Width="800" Height="300" Grid.Row="0" Grid.Column="1">
|
|
|
+ <TextBlock Text="Foreline PID Study" FontSize="30" Canvas.Left="254" Canvas.Top="13">
|
|
|
+
|
|
|
+ </TextBlock>
|
|
|
+ <deviceControl:AITSensor GreenColor="True" LightOnValue="{Binding ForelineHeaterOn}" Canvas.Left="700" Canvas.Top="180"/>
|
|
|
+ <deviceControl:AITSensor GreenColor="True" LightOnValue="{Binding ForelineHeaterPIDATRunning}" Canvas.Left="700" Canvas.Top="210"/>
|
|
|
+ <deviceControl:AITSensor GreenColor="True" LightOnValue="{Binding ForelineHeaterPIDATFinished}" Canvas.Left="700" Canvas.Top="240"/>
|
|
|
+ <Button Content="Set" Canvas.Left="340" Canvas.Top="132" Width="70" HorizontalAlignment="Center" Height="26" VerticalAlignment="Center">
|
|
|
+ <i:Interaction.Triggers>
|
|
|
+ <i:EventTrigger EventName="Click">
|
|
|
+ <cal:ActionMessage MethodName="ForelineSetTemperature">
|
|
|
+ <cal:Parameter Value="{Binding}"></cal:Parameter>
|
|
|
+ </cal:ActionMessage>
|
|
|
+ </i:EventTrigger>
|
|
|
+ </i:Interaction.Triggers>
|
|
|
+
|
|
|
+ </Button>
|
|
|
+ <Button Content="Heater On" Canvas.Left="442" Canvas.Top="118" Width="80" HorizontalAlignment="Center" Height="26" VerticalAlignment="Center">
|
|
|
+ <i:Interaction.Triggers>
|
|
|
+ <i:EventTrigger EventName="Click">
|
|
|
+ <cal:ActionMessage MethodName="ForelineSetHeaterOn">
|
|
|
+ </cal:ActionMessage>
|
|
|
+ </i:EventTrigger>
|
|
|
+ </i:Interaction.Triggers>
|
|
|
+
|
|
|
+ </Button>
|
|
|
+ <Button Content="PID Start" Canvas.Left="75" Canvas.Top="233" Width="100" HorizontalAlignment="Left" Height="26" VerticalAlignment="Center">
|
|
|
+ <i:Interaction.Triggers>
|
|
|
+ <i:EventTrigger EventName="Click">
|
|
|
+ <cal:ActionMessage MethodName="ForelineHeatPIDATStart">
|
|
|
+ </cal:ActionMessage>
|
|
|
+ </i:EventTrigger>
|
|
|
+ </i:Interaction.Triggers>
|
|
|
+
|
|
|
+ </Button>
|
|
|
+ <Button Content="PID End" Canvas.Left="275" Canvas.Top="233" Width="100" HorizontalAlignment="Left" Height="26" VerticalAlignment="Center">
|
|
|
+ <i:Interaction.Triggers>
|
|
|
+ <i:EventTrigger EventName="Click">
|
|
|
+ <cal:ActionMessage MethodName="ForelineHeatPIDATStop">
|
|
|
+ </cal:ActionMessage>
|
|
|
+ </i:EventTrigger>
|
|
|
+ </i:Interaction.Triggers>
|
|
|
+
|
|
|
+ </Button>
|
|
|
+ <Button Content="Heater Off" Canvas.Left="442" Canvas.Top="169" Width="80" HorizontalAlignment="Center" Height="26" VerticalAlignment="Top">
|
|
|
+ <i:Interaction.Triggers>
|
|
|
+ <i:EventTrigger EventName="Click">
|
|
|
+ <cal:ActionMessage MethodName="ForelineSetHeaterOff">
|
|
|
+ </cal:ActionMessage>
|
|
|
+ </i:EventTrigger>
|
|
|
+ </i:Interaction.Triggers>
|
|
|
+
|
|
|
+ </Button>
|
|
|
+ <TextBox Text="{Binding ForelineTemperatureSetpoint, UpdateSourceTrigger=PropertyChanged}" Width="95" Canvas.Left="222" Canvas.Top="132" Height="26">
|
|
|
+
|
|
|
+ </TextBox>
|
|
|
+ <TextBlock Text="Temperature Setpoint:" FontSize="16" Canvas.Left="46" Canvas.Top="134">
|
|
|
+
|
|
|
+ </TextBlock>
|
|
|
+ <TextBlock Text="Control TC:" FontSize="16" Canvas.Left="561" Canvas.Top="118">
|
|
|
+
|
|
|
+ </TextBlock>
|
|
|
+ <TextBlock Text="{Binding ForelineControlTCTemp}" FontSize="16" Canvas.Left="701" Canvas.Top="118">
|
|
|
+
|
|
|
+ </TextBlock>
|
|
|
+
|
|
|
+ <TextBlock Text="Monitor TC:" FontSize="16" Canvas.Left="561" Canvas.Top="148">
|
|
|
+
|
|
|
+ </TextBlock>
|
|
|
+ <TextBlock Text="{Binding ForelineMonitorTCTemp}" FontSize="16" Canvas.Left="701" Canvas.Top="148">
|
|
|
+
|
|
|
+ </TextBlock>
|
|
|
+ <TextBlock Text="Heating" FontSize="16" Canvas.Left="561" Canvas.Top="178">
|
|
|
+
|
|
|
+ </TextBlock>
|
|
|
+ <TextBlock Text="Learning" FontSize="16" Canvas.Left="561" Canvas.Top="208">
|
|
|
+
|
|
|
+ </TextBlock>
|
|
|
+ <TextBlock Text="Finish" FontSize="16" Canvas.Left="561" Canvas.Top="238">
|
|
|
+
|
|
|
+ </TextBlock>
|
|
|
+ </Canvas>
|
|
|
+ <!--Substrate PID Study-->
|
|
|
+ <Canvas Background="#FFC5D0D8" Width="800" Height="300" Grid.Row="0" Grid.Column="0">
|
|
|
+ <TextBlock Text="Substrate PID Study" FontSize="30" Canvas.Left="254" Canvas.Top="13">
|
|
|
+
|
|
|
+ </TextBlock>
|
|
|
+ <deviceControl:AITSensor GreenColor="True" LightOnValue="{Binding LE1HeaterOn}" Canvas.Left="700" Canvas.Top="180"/>
|
|
|
+ <deviceControl:AITSensor GreenColor="True" LightOnValue="{Binding LE1HeaterPIDATRunning}" Canvas.Left="700" Canvas.Top="210"/>
|
|
|
+ <deviceControl:AITSensor GreenColor="True" LightOnValue="{Binding LE1HeaterPIDATFinished}" Canvas.Left="700" Canvas.Top="240"/>
|
|
|
+ <Button Content="Set" Canvas.Left="344" Canvas.Top="132" Width="70" HorizontalAlignment="Center" Height="26" VerticalAlignment="Top">
|
|
|
+ <i:Interaction.Triggers>
|
|
|
+ <i:EventTrigger EventName="Click">
|
|
|
+ <cal:ActionMessage MethodName="LE1SetTemperature">
|
|
|
+ <cal:Parameter Value="{Binding}"></cal:Parameter>
|
|
|
+ </cal:ActionMessage>
|
|
|
+ </i:EventTrigger>
|
|
|
+ </i:Interaction.Triggers>
|
|
|
+
|
|
|
+ </Button>
|
|
|
+ <Button Content="Heater On" Canvas.Left="446" Canvas.Top="118" Width="80" HorizontalAlignment="Center" Height="26" VerticalAlignment="Center">
|
|
|
+ <i:Interaction.Triggers>
|
|
|
+ <i:EventTrigger EventName="Click">
|
|
|
+ <cal:ActionMessage MethodName="LE1SetHeaterOn">
|
|
|
+ </cal:ActionMessage>
|
|
|
+ </i:EventTrigger>
|
|
|
+ </i:Interaction.Triggers>
|
|
|
+
|
|
|
+ </Button>
|
|
|
+ <Button Content="PID Start" Canvas.Left="80" Canvas.Top="234" Width="100" Height="26" HorizontalAlignment="Left" VerticalAlignment="Center">
|
|
|
+ <i:Interaction.Triggers>
|
|
|
+ <i:EventTrigger EventName="Click">
|
|
|
+ <cal:ActionMessage MethodName="LE1HeatPIDATStart">
|
|
|
+ </cal:ActionMessage>
|
|
|
+ </i:EventTrigger>
|
|
|
+ </i:Interaction.Triggers>
|
|
|
+
|
|
|
+ </Button>
|
|
|
+ <Button Content="PID End" Canvas.Left="279" Canvas.Top="234" Width="100" Height="26" HorizontalAlignment="Left" VerticalAlignment="Center">
|
|
|
+ <i:Interaction.Triggers>
|
|
|
+ <i:EventTrigger EventName="Click">
|
|
|
+ <cal:ActionMessage MethodName="LE1HeatPIDATStop">
|
|
|
+ </cal:ActionMessage>
|
|
|
+ </i:EventTrigger>
|
|
|
+ </i:Interaction.Triggers>
|
|
|
+
|
|
|
+ </Button>
|
|
|
+ <Button Content="Heater Off" Canvas.Left="446" Canvas.Top="169" Width="80" HorizontalAlignment="Center" Height="26" VerticalAlignment="Top">
|
|
|
+ <i:Interaction.Triggers>
|
|
|
+ <i:EventTrigger EventName="Click">
|
|
|
+ <cal:ActionMessage MethodName="LE1SetHeaterOff">
|
|
|
+ </cal:ActionMessage>
|
|
|
+ </i:EventTrigger>
|
|
|
+ </i:Interaction.Triggers>
|
|
|
+
|
|
|
+ </Button>
|
|
|
+ <TextBox Text="{Binding LE1TemperatureSetpoint, UpdateSourceTrigger=PropertyChanged}" Width="95" Canvas.Left="234" Canvas.Top="132" Height="26">
|
|
|
+
|
|
|
+ </TextBox>
|
|
|
+ <TextBlock Text="Temperature Setpoint:" FontSize="16" Canvas.Left="52" Canvas.Top="134">
|
|
|
+
|
|
|
+ </TextBlock>
|
|
|
+ <TextBlock Text="Control TC:" FontSize="16" Canvas.Left="561" Canvas.Top="118">
|
|
|
+
|
|
|
+ </TextBlock>
|
|
|
+ <TextBlock Text="{Binding LE1ControlTCTemp}" FontSize="16" Canvas.Left="701" Canvas.Top="118">
|
|
|
+
|
|
|
+ </TextBlock>
|
|
|
+
|
|
|
+ <TextBlock Text="Monitor TC:" FontSize="16" Canvas.Left="561" Canvas.Top="148">
|
|
|
+
|
|
|
+ </TextBlock>
|
|
|
+ <TextBlock Text="{Binding LE1MonitorTCTemp}" FontSize="16" Canvas.Left="701" Canvas.Top="148">
|
|
|
+
|
|
|
+ </TextBlock>
|
|
|
+ <TextBlock Text="Heating" FontSize="16" Canvas.Left="561" Canvas.Top="178">
|
|
|
+
|
|
|
+ </TextBlock>
|
|
|
+ <TextBlock Text="Learning" FontSize="16" Canvas.Left="561" Canvas.Top="208">
|
|
|
+
|
|
|
+ </TextBlock>
|
|
|
+ <TextBlock Text="Finish" FontSize="16" Canvas.Left="561" Canvas.Top="238">
|
|
|
+
|
|
|
+ </TextBlock>
|
|
|
+ </Canvas>
|
|
|
+ <!--CHB PID Study-->
|
|
|
+ <Canvas Background="#FFC5D0D8" Width="800" Height="300" Grid.Row="1" Grid.Column="0">
|
|
|
+ <TextBlock Text="CHB PID Study" FontSize="30" Canvas.Left="254" Canvas.Top="13">
|
|
|
+
|
|
|
+ </TextBlock>
|
|
|
+ <deviceControl:AITSensor GreenColor="True" LightOnValue="{Binding CHBHeaterOn}" Canvas.Left="700" Canvas.Top="180"/>
|
|
|
+ <deviceControl:AITSensor GreenColor="True" LightOnValue="{Binding CHBHeaterPIDATRunning}" Canvas.Left="700" Canvas.Top="210"/>
|
|
|
+ <deviceControl:AITSensor GreenColor="True" LightOnValue="{Binding CHBHeaterPIDATFinished}" Canvas.Left="700" Canvas.Top="240"/>
|
|
|
+ <Button Content="Set" Canvas.Left="340" Canvas.Top="132" Width="70" HorizontalAlignment="Center" Height="26" VerticalAlignment="Center">
|
|
|
+ <i:Interaction.Triggers>
|
|
|
+ <i:EventTrigger EventName="Click">
|
|
|
+ <cal:ActionMessage MethodName="CHBSetTemperature">
|
|
|
+ <cal:Parameter Value="{Binding}"></cal:Parameter>
|
|
|
+ </cal:ActionMessage>
|
|
|
+ </i:EventTrigger>
|
|
|
+ </i:Interaction.Triggers>
|
|
|
+
|
|
|
+ </Button>
|
|
|
+ <Button Content="Heater On" Canvas.Left="442" Canvas.Top="118" Width="80" HorizontalAlignment="Center" Height="26" VerticalAlignment="Center">
|
|
|
+ <i:Interaction.Triggers>
|
|
|
+ <i:EventTrigger EventName="Click">
|
|
|
+ <cal:ActionMessage MethodName="CHBSetHeaterOn">
|
|
|
+ </cal:ActionMessage>
|
|
|
+ </i:EventTrigger>
|
|
|
+ </i:Interaction.Triggers>
|
|
|
+
|
|
|
+ </Button>
|
|
|
+ <Button Content="PID Start" Canvas.Left="75" Canvas.Top="233" Width="100" HorizontalAlignment="Left" Height="26" VerticalAlignment="Center">
|
|
|
+ <i:Interaction.Triggers>
|
|
|
+ <i:EventTrigger EventName="Click">
|
|
|
+ <cal:ActionMessage MethodName="CHBHeatPIDATStart">
|
|
|
+ </cal:ActionMessage>
|
|
|
+ </i:EventTrigger>
|
|
|
+ </i:Interaction.Triggers>
|
|
|
+
|
|
|
+ </Button>
|
|
|
+ <Button Content="PID End" Canvas.Left="275" Canvas.Top="233" Width="100" HorizontalAlignment="Left" Height="26" VerticalAlignment="Center">
|
|
|
+ <i:Interaction.Triggers>
|
|
|
+ <i:EventTrigger EventName="Click">
|
|
|
+ <cal:ActionMessage MethodName="CHBHeatPIDATStop">
|
|
|
+ </cal:ActionMessage>
|
|
|
+ </i:EventTrigger>
|
|
|
+ </i:Interaction.Triggers>
|
|
|
+
|
|
|
+ </Button>
|
|
|
+ <Button Content="Heater Off" Canvas.Left="442" Canvas.Top="169" Width="80" HorizontalAlignment="Center" Height="26" VerticalAlignment="Top">
|
|
|
+ <i:Interaction.Triggers>
|
|
|
+ <i:EventTrigger EventName="Click">
|
|
|
+ <cal:ActionMessage MethodName="CHBSetHeaterOff">
|
|
|
+ </cal:ActionMessage>
|
|
|
+ </i:EventTrigger>
|
|
|
+ </i:Interaction.Triggers>
|
|
|
+
|
|
|
+ </Button>
|
|
|
+ <TextBox Text="{Binding CHBTemperatureSetpoint, UpdateSourceTrigger=PropertyChanged}" Width="95" Canvas.Left="222" Canvas.Top="132" Height="26">
|
|
|
+
|
|
|
+ </TextBox>
|
|
|
+ <TextBlock Text="Temperature Setpoint:" FontSize="16" Canvas.Left="46" Canvas.Top="134">
|
|
|
+
|
|
|
+ </TextBlock>
|
|
|
+ <TextBlock Text="Control TC:" FontSize="16" Canvas.Left="561" Canvas.Top="118">
|
|
|
+
|
|
|
+ </TextBlock>
|
|
|
+ <TextBlock Text="{Binding CHBControlTCTemp}" FontSize="16" Canvas.Left="701" Canvas.Top="118">
|
|
|
+
|
|
|
+ </TextBlock>
|
|
|
+
|
|
|
+ <TextBlock Text="Monitor TC:" FontSize="16" Canvas.Left="561" Canvas.Top="148" HorizontalAlignment="Left" VerticalAlignment="Center">
|
|
|
+
|
|
|
+ </TextBlock>
|
|
|
+ <TextBlock Text="{Binding CHBMonitorTCTemp}" FontSize="16" Canvas.Left="701" Canvas.Top="148">
|
|
|
+
|
|
|
+ </TextBlock>
|
|
|
+ <TextBlock Text="Heating" FontSize="16" Canvas.Left="561" Canvas.Top="178">
|
|
|
+
|
|
|
+ </TextBlock>
|
|
|
+ <TextBlock Text="Learning" FontSize="16" Canvas.Left="561" Canvas.Top="208">
|
|
|
+
|
|
|
+ </TextBlock>
|
|
|
+ <TextBlock Text="Finish" FontSize="16" Canvas.Left="561" Canvas.Top="238">
|
|
|
+
|
|
|
+ </TextBlock>
|
|
|
+ </Canvas>
|
|
|
+ </Grid>
|
|
|
+</UserControl>
|