123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547 |
- <UserControl x:Class="EfemUI.Controls.E84Info"
- 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:ctrlCommon="clr-namespace:Aitex.Sorter.UI.Controls.Common;assembly=Aitex.Sorter.UI"
- xmlns:controls="clr-namespace:Aitex.Sorter.UI.Controls;assembly=Aitex.Sorter.UI"
- xmlns:Common="clr-namespace:Aitex.Sorter.Common;assembly=Aitex.Sorter.Common"
- xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
- mc:Ignorable="d" x:Name="self"
- d:DesignHeight="760" d:DesignWidth="1124">
- <Grid x:Name="root">
- <Border HorizontalAlignment="Left" VerticalAlignment="Top" BorderThickness="1" BorderBrush="#84a567"
- Height="760" Width="1124" Margin="0">
- <DockPanel Background="#d6f1ff">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="5*" />
- <RowDefinition Height="*" />
- <RowDefinition Height="4*" />
- </Grid.RowDefinitions>
- <Border Grid.Row="0" HorizontalAlignment="Left" VerticalAlignment="Bottom" BorderThickness="1"
- BorderBrush="#84a567" Height="380" Width="1120" Margin="0">
- <DockPanel Background="#d6f1ff">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="0.9*" />
- <ColumnDefinition Width="1.35*" />
- <ColumnDefinition Width="1.21*" />
- </Grid.ColumnDefinitions>
- <Border x:Name="LpBorder" Grid.Row="0" Grid.Column="0" HorizontalAlignment="Left"
- VerticalAlignment="Bottom" BorderThickness="1" BorderBrush="#84a567"
- Height="380" Width="290" Margin="0">
- <DockPanel Background="#d6f1ff">
- <Label Content="Pod Loader Status" HorizontalContentAlignment="Center"
- DockPanel.Dock="Top" Background="#7fc7ed" Height="30" />
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="4*" />
- <RowDefinition Height="*" />
- </Grid.RowDefinitions>
- <Border Grid.Row="0" BorderBrush="Gray" BorderThickness="1">
- <Grid ctrlCommon:GridHelper.Column0="LightBlue"
- ctrlCommon:GridHelper.Column1="Transparent">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*" />
- <ColumnDefinition Width="*" />
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition Height="35" />
- <RowDefinition Height="35" />
- <RowDefinition Height="35" />
- <RowDefinition Height="35" />
- <RowDefinition Height="35" />
- <RowDefinition Height="55" />
- <RowDefinition Height="35" />
- </Grid.RowDefinitions>
- <Label Grid.Row="0" Content="Pod Present :" FontSize="18"
- HorizontalContentAlignment="Right" />
- <ctrlCommon:LED Grid.Row="0" Grid.Column="1"
- On="{Binding E84Data.PodPresent}" />
- <Label Grid.Row="1" Grid.Column="0" Content="Pod Placed :"
- FontSize="18"
- HorizontalContentAlignment="Right" />
- <ctrlCommon:LED Grid.Row="1" Grid.Column="1"
- On="{Binding E84Data.PodPlaced}" />
- <Label Grid.Row="2" Grid.Column="0" Content="Pod Latched :"
- FontSize="18"
- HorizontalContentAlignment="Right" />
- <ctrlCommon:LED Grid.Row="2" Grid.Column="1"
- On="{Binding E84Data.PodLatched}" />
- <Label Grid.Row="3" Grid.Column="0" Content="Pod Docked :"
- FontSize="18"
- HorizontalContentAlignment="Right" />
- <ctrlCommon:LED Grid.Row="3" Grid.Column="1"
- On="{Binding E84Data.PodDocked}" />
- <Label Grid.Row="4" Grid.Column="0" Content="Pod Open :"
- FontSize="18"
- HorizontalContentAlignment="Right" />
- <ctrlCommon:LED Grid.Row="4" Grid.Column="1"
- On="{Binding E84Data.PodDocked}" />
- <Label Content="{Binding E84Data.LoadPortState}" Grid.Row="5"
- Grid.ColumnSpan="2"
- Grid.Column="0"
- BorderThickness="2" BorderBrush="White" Width="160"
- Height="37" FontSize="18"
- HorizontalContentAlignment="Center"
- VerticalAlignment="Center" />
- <Label Grid.Row="6" Grid.Column="0" Content="Virtual Mode :"
- FontSize="18"
- HorizontalContentAlignment="Right" />
- <ctrlCommon:LED Grid.Row="6" Grid.Column="1"
- On="{Binding E84Data.VirtualMode}" />
- </Grid>
- </Border>
- <WrapPanel Grid.Row="1">
- <Button Content="Place" x:Name="btnPlace" FontSize="20"
- Command="{Binding E84Command}"
- CommandParameter="E84Place"
- Width="80" Height="40" VerticalAlignment="Center" />
- <Button Content="Pick" x:Name="btnPick" FontSize="20"
- Command="{Binding E84Command}"
- CommandParameter="E84Pick"
- Width="80" Height="40" VerticalAlignment="Center" />
- <Button Content="Clamp" x:Name="btnClamp" FontSize="20"
- Command="{Binding E84Command}"
- CommandParameter="Clamp"
- Width="80" Height="40" VerticalAlignment="Center" />
- </WrapPanel>
- </Grid>
- </DockPanel>
- </Border>
- <Border Grid.Column="1" HorizontalAlignment="Left" VerticalAlignment="Bottom"
- BorderThickness="1" BorderBrush="#84a567" Height="380" Width="434" Margin="0">
- <DockPanel Background="#d6f1ff">
- <Label Content="Load Port Status" HorizontalContentAlignment="Center"
- DockPanel.Dock="Top" Background="#7fc7ed" Height="30" />
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="1.45*" />
- <RowDefinition Height="*" />
- </Grid.RowDefinitions>
- <Border Grid.Row="0" BorderBrush="Gray" BorderThickness="1">
- <Grid ctrlCommon:GridHelper.Column0="LightBlue"
- ctrlCommon:GridHelper.Column1="Transparent">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*" />
- <ColumnDefinition Width="1.7*" />
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition Height="38" />
- <RowDefinition Height="55" />
- <RowDefinition Height="55" />
- <RowDefinition Height="55" />
- </Grid.RowDefinitions>
- <Label Grid.Row="0" Content="Port Reserved :" FontSize="18"
- HorizontalContentAlignment="Right" />
- <ctrlCommon:LED Grid.Row="0" Grid.Column="1"
- On="{Binding E84Data.PodReserved}" />
- <Label Grid.Row="1" Content="Port State :" FontSize="18"
- HorizontalContentAlignment="Right"
- VerticalAlignment="Center" />
- <Label Content="{Binding E84Data.PortState}" Grid.Row="1"
- Grid.Column="1"
- BorderThickness="2" BorderBrush="White" Width="220"
- FontSize="18" HorizontalContentAlignment="Center"
- VerticalAlignment="Center" />
- <Label Grid.Row="2" Content="Carrier ID :"
- HorizontalContentAlignment="Right" FontSize="18"
- VerticalAlignment="Center" />
- <Label Content="{Binding E84Data.CarrierID}" Grid.Row="2"
- Grid.Column="1" BorderThickness="2"
- BorderBrush="White" Width="220" FontSize="18" Height="35"
- HorizontalContentAlignment="Center"
- VerticalAlignment="Center" />
- <Label Grid.Row="3" Content="Slot Map :"
- HorizontalContentAlignment="Right" FontSize="18"
- VerticalAlignment="Center" />
- <Label Content="{Binding E84Data.SlotMap}" Grid.Row="3"
- Grid.Column="1" BorderThickness="2"
- BorderBrush="White" Width="220" FontSize="14"
- HorizontalContentAlignment="Center"
- VerticalAlignment="Center" />
- </Grid>
- </Border>
- <Border Grid.Row="1" BorderBrush="Gray" BorderThickness="1">
- <Grid ctrlCommon:GridHelper.Column0="LightBlue"
- ctrlCommon:GridHelper.Column1="Transparent">
- <Grid.RowDefinitions>
- <RowDefinition Height="34" />
- <RowDefinition Height="34" />
- <RowDefinition Height="34" />
- <RowDefinition Height="34" />
- </Grid.RowDefinitions>
- <CheckBox Grid.Row="0" Content="Automatic Mode" IsChecked="False"
- VerticalAlignment="Center" HorizontalAlignment="Left"
- FontSize="16">
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="Checked">
- <i:InvokeCommandAction Command="{Binding E84Command}"
- CommandParameter="SetAMHS" />
- </i:EventTrigger>
- <i:EventTrigger EventName="Unchecked">
- <i:InvokeCommandAction Command="{Binding E84Command}"
- CommandParameter="SetManual" />
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </CheckBox>
- <CheckBox Grid.Row="1" Content="Keep Clamped After Run"
- IsChecked="False" VerticalAlignment="Center"
- HorizontalAlignment="Left" FontSize="16" />
- <CheckBox Grid.Row="2" Content="Keep Docked After Run"
- IsChecked="False" VerticalAlignment="Center"
- HorizontalAlignment="Left" FontSize="16" />
- <CheckBox Grid.Row="3" Content="Close Door After Map"
- IsChecked="False" VerticalAlignment="Center"
- HorizontalAlignment="Left" FontSize="16" />
- </Grid>
- </Border>
- </Grid>
- </DockPanel>
- </Border>
- <Border Grid.Column="2" HorizontalAlignment="Left" VerticalAlignment="Bottom"
- BorderThickness="1" BorderBrush="#84a567" Height="380" Width="392" Margin="0">
- <DockPanel Background="#d6f1ff">
- <Label Content="Carrier ID Reader" HorizontalContentAlignment="Center"
- DockPanel.Dock="Top" Background="#7fc7ed" Height="30" />
- <Grid>
- <Border BorderBrush="Gray" BorderThickness="1">
- <Grid ctrlCommon:GridHelper.Column0="LightBlue"
- ctrlCommon:GridHelper.Column1="Transparent">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*" />
- <ColumnDefinition Width="1.8*" />
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition Height="45" />
- <RowDefinition Height="45" />
- <RowDefinition Height="45" />
- <RowDefinition Height="45" />
- <RowDefinition Height="45" />
- <RowDefinition Height="65" />
- <RowDefinition Height="50" />
- </Grid.RowDefinitions>
- <controls:AITScBoolRow ScName="In Service" Grid.Row="0"
- Grid.ColumnSpan="2"
- ScId="Robot.Blade1Enable"
- ScFeedback="{Binding ConfigFeedback.Robot_Blade1Enable}"
- ScSetPoint="{Binding ConfigSetPoint.Robot_Blade1Enable}"
- Command="{Binding SetConfigCommand}"
- NameWidth="185" FeedbackWidth="70"
- SetPointWidth="70" CommandWidth="60" />
- <controls:AITScDoubleRow ScName="Data Read Size" Grid.Row="1"
- Grid.ColumnSpan="2"
- ScId="Robot.RobotSpeed"
- ScFeedback="{Binding ConfigFeedback.Robot_RobotSpeed}"
- ScSetPoint="{Binding ConfigSetPoint.Robot_RobotSpeed}"
- Command="{Binding SetConfigCommand}"
- NameWidth="185" FeedbackWidth="70"
- SetPointWidth="70" CommandWidth="60" />
- <controls:AITScDoubleRow ScName="Start Page" Grid.Row="2"
- Grid.ColumnSpan="2"
- ScId="Robot.TimeLimitRobotCommand"
- ScFeedback="{Binding ConfigFeedback.Robot_TimeLimitRobotCommand}"
- ScSetPoint="{Binding ConfigSetPoint.Robot_TimeLimitRobotCommand}"
- Command="{Binding SetConfigCommand}"
- NameWidth="185" FeedbackWidth="70"
- SetPointWidth="70" CommandWidth="60" />
- <controls:AITScBoolRow ScName="Auto Read" Grid.Row="3"
- Grid.ColumnSpan="2"
- ScId="Robot.Blade1Enable"
- ScFeedback="{Binding ConfigFeedback.Robot_Blade1Enable}"
- ScSetPoint="{Binding ConfigSetPoint.Robot_Blade1Enable}"
- Command="{Binding SetConfigCommand}"
- NameWidth="185" FeedbackWidth="70"
- SetPointWidth="70" CommandWidth="60" />
- <controls:AITScDoubleRow ScName="Default Page" Grid.Row="4"
- Grid.ColumnSpan="2"
- ScId="Robot.TimeLimitRobotHome"
- ScFeedback="{Binding ConfigFeedback.Robot_TimeLimitRobotHome}"
- ScSetPoint="{Binding ConfigSetPoint.Robot_TimeLimitRobotHome}"
- Command="{Binding SetConfigCommand}"
- NameWidth="185" FeedbackWidth="70"
- SetPointWidth="70" CommandWidth="60" />
- <Button Content="Read" x:Name="btnRead" Grid.Row="5"
- Grid.ColumnSpan="2" FontSize="20" Width="120" Height="40"
- VerticalAlignment="Center" Command="{Binding E84Command}"
- CommandParameter="{x:Static Common:OperationName.Scan}" />
- <Label Grid.Row="6" Content="Last Page Read" FontSize="18"
- HorizontalContentAlignment="Center"
- VerticalAlignment="Center" />
- <Label Content="" Grid.Row="6" Grid.Column="1" BorderThickness="2"
- BorderBrush="White" FontSize="18"
- HorizontalContentAlignment="Center"
- VerticalAlignment="Center" Margin="5" />
- </Grid>
- </Border>
- </Grid>
- </DockPanel>
- </Border>
- </Grid>
- </DockPanel>
- </Border>
- <Border Grid.Row="1" HorizontalAlignment="Left" VerticalAlignment="Bottom" BorderThickness="1"
- BorderBrush="#84a567" Height="80" Width="1120" Margin="0">
- <DockPanel Background="#d6f1ff">
- <Label Content="E84 Status Monitor" HorizontalContentAlignment="Center"
- DockPanel.Dock="Top" Background="#7fc7ed" Height="30" />
- <Grid>
- <Border BorderBrush="Gray" BorderThickness="1">
- <Grid ctrlCommon:GridHelper.Column0="LightBlue"
- ctrlCommon:GridHelper.Column1="Transparent">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*" />
- <ColumnDefinition Width="3*" />
- </Grid.ColumnDefinitions>
- <Label Grid.Row="1" Content="Status :" FontSize="18"
- HorizontalContentAlignment="Right" VerticalAlignment="Center" />
- <Label Content="{Binding E84Data.E84State}" Grid.Row="1" Grid.Column="1"
- BorderThickness="2"
- BorderBrush="White" Width="400" FontSize="18"
- HorizontalContentAlignment="Center" VerticalAlignment="Center" />
- </Grid>
- </Border>
- </Grid>
- </DockPanel>
- </Border>
- <Border Grid.Row="2" HorizontalAlignment="Left" VerticalAlignment="Bottom" BorderThickness="1"
- BorderBrush="#84a567" Height="305" Width="1120" Margin="0">
- <DockPanel Background="#d6f1ff">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="1.32*" />
- <ColumnDefinition Width="1.32*" />
- <ColumnDefinition Width="1.32*" />
- <ColumnDefinition Width="1.26*" />
- </Grid.ColumnDefinitions>
- <Border x:Name="Inputs" Grid.Column="0" HorizontalAlignment="Left"
- VerticalAlignment="Bottom"
- BorderThickness="1" BorderBrush="#84a567" Height="305" Width="280" Margin="0">
- <DockPanel Background="#d6f1ff">
- <Label Content="E84 Factory Inputs" HorizontalContentAlignment="Center"
- DockPanel.Dock="Top" Background="#7fc7ed" Height="30" />
- <Grid>
- <Border BorderBrush="Gray" BorderThickness="1">
- <Grid ctrlCommon:GridHelper.Column0="LightBlue"
- ctrlCommon:GridHelper.Column1="Transparent">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="1.9*" />
- <ColumnDefinition Width="*" />
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition Height="38" />
- <RowDefinition Height="38" />
- <RowDefinition Height="38" />
- <RowDefinition Height="38" />
- <RowDefinition Height="38" />
- <RowDefinition Height="38" />
- <RowDefinition Height="38" />
- </Grid.RowDefinitions>
- <Label Grid.Row="0" Content="Vaild :" FontSize="18"
- HorizontalContentAlignment="Right" />
- <ctrlCommon:LED Grid.Row="0" Grid.Column="1"
- On="{Binding E84Data.Valid}" />
- <Label Grid.Row="1" Content="Transfer Request :" FontSize="18"
- HorizontalContentAlignment="Right" />
- <ctrlCommon:LED Grid.Row="1" Grid.Column="1"
- On="{Binding E84Data.TransferRequest}" />
- <Label Grid.Row="2" Content="Busy :" FontSize="18"
- HorizontalContentAlignment="Right" />
- <ctrlCommon:LED Grid.Row="2" Grid.Column="1"
- On="{Binding E84Data.Busy}" />
- <Label Grid.Row="3" Content="Transfer Complete :" FontSize="18"
- HorizontalContentAlignment="Right" />
- <ctrlCommon:LED Grid.Row="3" Grid.Column="1"
- On="{Binding E84Data.TransferComplete}" />
- <Label Grid.Row="4" Content="CS_0 :" FontSize="18"
- HorizontalContentAlignment="Right" />
- <ctrlCommon:LED Grid.Row="4" Grid.Column="1"
- On="{Binding E84Data.CS0}" />
- <Label Grid.Row="5" Content="CS_1 :" FontSize="18"
- HorizontalContentAlignment="Right" />
- <ctrlCommon:LED Grid.Row="5" Grid.Column="1"
- On="{Binding E84Data.CS1}" />
- <Label Grid.Row="6" Content="Continuous Transfer :" FontSize="18"
- HorizontalContentAlignment="Right" />
- <ctrlCommon:LED Grid.Row="6" Grid.Column="1"
- On="{Binding E84Data.ContinuousTransfer}" />
- </Grid>
- </Border>
- </Grid>
- </DockPanel>
- </Border>
- <Border x:Name="Outputs" Grid.Column="1" HorizontalAlignment="Left"
- VerticalAlignment="Bottom"
- BorderThickness="1" BorderBrush="#84a567" Height="305" Width="280" Margin="0">
- <DockPanel Background="#d6f1ff">
- <Label Content="E84 Factory Outputs" HorizontalContentAlignment="Center"
- DockPanel.Dock="Top" Background="#7fc7ed" Height="30" />
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="3*" />
- <RowDefinition Height="*" />
- </Grid.RowDefinitions>
- <Border Grid.Row="0" BorderBrush="Gray" BorderThickness="1">
- <Grid ctrlCommon:GridHelper.Column0="LightBlue"
- ctrlCommon:GridHelper.Column1="Transparent">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="1.9*" />
- <ColumnDefinition Width="*" />
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition Height="38" />
- <RowDefinition Height="38" />
- <RowDefinition Height="38" />
- <RowDefinition Height="38" />
- <RowDefinition Height="38" />
- </Grid.RowDefinitions>
- <Label Grid.Row="0" Content="Load Request :" FontSize="18"
- HorizontalContentAlignment="Right" />
- <ctrlCommon:LED Grid.Row="0" Grid.Column="1"
- On="{Binding E84Data.LoadRequest}" />
- <Label Grid.Row="1" Content="Unload Request :" FontSize="18"
- HorizontalContentAlignment="Right" />
- <ctrlCommon:LED Grid.Row="1" Grid.Column="1"
- On="{Binding E84Data.UnloadRequest}" />
- <Label Grid.Row="2" Content="Ready to Transfer :" FontSize="18"
- HorizontalContentAlignment="Right" />
- <ctrlCommon:LED Grid.Row="2" Grid.Column="1"
- On="{Binding E84Data.ReadyToTransfer}" />
- <Label Grid.Row="3" Content="Handoff Available :" FontSize="18"
- HorizontalContentAlignment="Right" />
- <ctrlCommon:LED Grid.Row="3" Grid.Column="1"
- On="{Binding E84Data.HandoffAvailable}" />
- <Label Grid.Row="4" Content="Emergency Stop OK :" FontSize="18"
- HorizontalContentAlignment="Right" />
- <ctrlCommon:LED Grid.Row="4" Grid.Column="1"
- On="{Binding E84Data.EmergencyOk}" />
- </Grid>
- </Border>
- <Border Grid.Row="1" BorderBrush="Gray" BorderThickness="1">
- <Grid ctrlCommon:GridHelper.Column0="LightBlue"
- ctrlCommon:GridHelper.Column1="Transparent">
- <CheckBox Content="Error on Placement Timeout" IsChecked="False"
- VerticalAlignment="Center" HorizontalAlignment="Center"
- FontSize="16" />
- </Grid>
- </Border>
- </Grid>
- </DockPanel>
- </Border>
- <Border x:Name="ConfigBorder" Grid.Column="2" HorizontalAlignment="Left"
- VerticalAlignment="Bottom"
- BorderThickness="1" BorderBrush="#84a567" Height="305" Width="280" Margin="0">
- <DockPanel Background="#d6f1ff">
- <Label Content="TimeOut Settings" HorizontalContentAlignment="Center"
- DockPanel.Dock="Top" Background="#7fc7ed" Height="30" />
- <Grid>
- <Border BorderBrush="Gray" BorderThickness="1">
- <Grid ctrlCommon:GridHelper.Column0="LightBlue"
- ctrlCommon:GridHelper.Column1="Transparent">
- <Grid.RowDefinitions>
- <RowDefinition Height="45" />
- <RowDefinition Height="45" />
- <RowDefinition Height="45" />
- <RowDefinition Height="45" />
- <RowDefinition Height="45" />
- <RowDefinition Height="45" />
- </Grid.RowDefinitions>
- <controls:AITScDoubleRow ScName="TP1 (sec)" Grid.Row="0"
- ScId="Fa.E84.TP1"
- ScFeedback="{Binding ConfigFeedback.Fa_E84_TP1}"
- ScSetPoint="{Binding ConfigSetPoint.Fa_E84_TP1}"
- Command="{Binding SetConfigCommand}"
- NameWidth="75" FeedbackWidth="70"
- SetPointWidth="70" CommandWidth="60" />
- <controls:AITScDoubleRow ScName="TP2 (sec)" Grid.Row="1"
- ScId="Fa.E84.TP2"
- ScFeedback="{Binding ConfigFeedback.Fa_E84_TP2}"
- ScSetPoint="{Binding ConfigSetPoint.Fa_E84_TP2}"
- Command="{Binding SetConfigCommand}"
- NameWidth="75" FeedbackWidth="70"
- SetPointWidth="70" CommandWidth="60" />
- <controls:AITScDoubleRow ScName="TP3 (sec)" Grid.Row="2"
- ScId="Fa.E84.TP3"
- ScFeedback="{Binding ConfigFeedback.Fa_E84_TP3}"
- ScSetPoint="{Binding ConfigSetPoint.Fa_E84_TP3}"
- Command="{Binding SetConfigCommand}"
- NameWidth="75" FeedbackWidth="70"
- SetPointWidth="70" CommandWidth="60" />
- <controls:AITScDoubleRow ScName="TP4(sec)" Grid.Row="3"
- ScId="Fa.E84.TP4"
- ScFeedback="{Binding ConfigFeedback.Fa_E84_TP4}"
- ScSetPoint="{Binding ConfigSetPoint.Fa_E84_TP4}"
- Command="{Binding SetConfigCommand}"
- NameWidth="75" FeedbackWidth="70"
- SetPointWidth="70" CommandWidth="60" />
- <controls:AITScDoubleRow ScName="TP5(sec)" Grid.Row="4"
- ScId="Fa.E84.TP5"
- ScFeedback="{Binding ConfigFeedback.Fa_E84_TP5}"
- ScSetPoint="{Binding ConfigSetPoint.Fa_E84_TP5}"
- Command="{Binding SetConfigCommand}"
- NameWidth="75" FeedbackWidth="70"
- SetPointWidth="70" CommandWidth="60" />
- <controls:AITScDoubleRow ScName="TP6(sec)" Grid.Row="5"
- ScId="Fa.E84.TP6"
- ScFeedback="{Binding ConfigFeedback.Fa_E84_TP6}"
- ScSetPoint="{Binding ConfigSetPoint.Fa_E84_TP6}"
- Command="{Binding SetConfigCommand}"
- NameWidth="75" FeedbackWidth="70"
- SetPointWidth="70" CommandWidth="60" />
- </Grid>
- </Border>
- </Grid>
- </DockPanel>
- </Border>
- <Border Grid.Column="3" HorizontalAlignment="Left" VerticalAlignment="Bottom"
- BorderThickness="1" BorderBrush="#84a567" Height="305" Width="272" Margin="0">
- <DockPanel Background="#d6f1ff">
- <Label Content="Error Recovery" HorizontalContentAlignment="Center"
- DockPanel.Dock="Top" Background="#7fc7ed" Height="30" />
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="2*" />
- <RowDefinition Height="*" />
- <RowDefinition Height="*" />
- <RowDefinition Height="*" />
- </Grid.RowDefinitions>
- <Button Content="Retry" x:Name="btnRetry" Grid.Row="1" FontSize="20"
- Width="120" Height="40" VerticalAlignment="Center" />
- <Button Content="Complete" x:Name="btnComplete" Grid.Row="2" FontSize="20"
- Width="120" Height="40" VerticalAlignment="Center" />
- <Border Grid.Row="3" BorderBrush="Gray" BorderThickness="1">
- <Grid ctrlCommon:GridHelper.Column0="LightBlue"
- ctrlCommon:GridHelper.Column1="Transparent">
- <CheckBox Content="Error on access mode violation"
- IsChecked="False" VerticalAlignment="Center"
- HorizontalAlignment="Center" FontSize="16" />
- </Grid>
- </Border>
- </Grid>
- </DockPanel>
- </Border>
- </Grid>
- </DockPanel>
- </Border>
- </Grid>
- </DockPanel>
- </Border>
- </Grid>
- </UserControl>
|