123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <UserControl x:Class="SorterUI.Views.Maintenance.FFUControlView"
- 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:local="clr-namespace:SorterUI.Views"
- xmlns:controls="clr-namespace:Aitex.Sorter.UI.Controls;assembly=Aitex.Sorter.UI"
- xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
- mc:Ignorable="d" x:Name="self"
- d:DesignHeight="718" d:DesignWidth="1120">
- <WrapPanel Orientation="Horizontal">
- <controls:HeaderPanel Header="FFU Monitor" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="5" Height="360" Width="355" >
- <Grid ctrlCommon:GridHelper.Column0="LightBlue" ctrlCommon:GridHelper.Column1="Transparent" Margin="0,0,0,-37">
- <Grid.RowDefinitions>
- <RowDefinition Height="40" />
- <RowDefinition Height="40" />
- <RowDefinition Height="40" />
- <RowDefinition Height="40" />
- <RowDefinition Height="40" />
- <RowDefinition Height="40" />
- <RowDefinition Height="40" />
- <RowDefinition Height="40" />
- <RowDefinition Height="40" />
- <RowDefinition Height="40" />
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="220" />
- <ColumnDefinition Width="130" />
- </Grid.ColumnDefinitions>
- <TextBlock Grid.Row="0" Grid.Column="0" Text="FFU1 Speed(RPM)" FontSize="18" />
- <Label Grid.Row="0" Grid.Column="1" Content="{Binding FFUSpeed1}" />
- <TextBlock Grid.Row="1" Grid.Column="0" Text="FFU2 Speed(RPM)" FontSize="18" />
- <Label Grid.Row="1" Grid.Column="1" Content="{Binding FFUSpeed2}" />
- <TextBlock Grid.Row="2" Grid.Column="0" Text="Diff.Pressure(Pa)" FontSize="18" />
- <Label Grid.Row="2" Grid.Column="1">
- <Label.Content>
- <TextBlock TextAlignment="Center" Text="{Binding DiffPressure1, StringFormat={}{0:F1} }"/>
- </Label.Content>
- </Label>
- <!--<TextBlock Grid.Row="3" Grid.Column="0" Text="Fan Speed Alarm" FontSize="18" />
- <Label Grid.Row="3" Grid.Column="1" Content="{Binding SpoolingTotal}" />
- <TextBlock Grid.Row="4" Grid.Column="0" Text="Diff.Pressure Alarm" FontSize="18" />
- <Label Grid.Row="4" Grid.Column="1" Content="{Binding SpoolingFullTime}" />
- <TextBlock Grid.Row="5" Grid.Column="0" Text="FFU1 COM Status" FontSize="18" />
- <Label Grid.Row="5" Grid.Column="1" Content="{Binding SpoolingStartTime}" />
-
- <TextBlock Grid.Row="6" Grid.Column="0" Text="Diff Pressure COM Status" FontSize="18" />
- <Label Grid.Row="6" Grid.Column="1" Content="{Binding SpoolingStartTime}" />-->
- <Button Grid.Row="3" Grid.Column="1" Content="Set FFU Speed" Command="{Binding SetFFUCommand}" CommandParameter="FFU" Margin="0,5,0,0" Width="Auto" Height="35"/>
- <!--:CommandHelper.CommandName="{x:Static Common:DeviceOperationName.AlignerRelease}"
- common:CommandHelper.Target="{x:Static Common:DeviceName.Aligner}" /-->
- <StackPanel Orientation="Horizontal" Grid.Row="5" Grid.ColumnSpan="2" HorizontalAlignment="Center">
- </StackPanel>
- </Grid>
- </controls:HeaderPanel>
- <controls:HeaderPanel Width="600" Height="360" Header="FFU Config" VerticalAlignment="Top" Margin="5">
- <StackPanel Orientation="Vertical">
-
- <controls:AITScDoubleRow ScName="Fan Control Mode"
- ScId="System.FFUControlMode"
- ScFeedback="{Binding ConfigFeedback.System_FFUControlMode}"
- ScSetPoint="{Binding ConfigSetPoint.System_FFUControlMode}"
- Command="{Binding SetConfigCommand}" NameWidth="350" FeedbackWidth="90"
- SetPointWidth="90" CommandWidth="60" Visibility="Collapsed"/>
- <controls:AITScDoubleRow ScName="Fan Speed Setpoint"
- ScId="System.FFUFanSpeedSetPoint"
- ScFeedback="{Binding ConfigFeedback.System_FFUFanSpeedSetPoint}"
- ScSetPoint="{Binding ConfigSetPoint.System_FFUFanSpeedSetPoint}"
- Command="{Binding SetConfigCommand}" NameWidth="350" FeedbackWidth="90"
- SetPointWidth="90" CommandWidth="60" />
- <controls:AITScDoubleRow ScName="Diff Pressure Setpoint"
- ScId="System.DiffPressureSetPoint"
- ScFeedback="{Binding ConfigFeedback.System_DiffPressureSetPoint}"
- ScSetPoint="{Binding ConfigSetPoint.System_DiffPressureSetPoint}"
- Command="{Binding SetConfigCommand}" NameWidth="350" FeedbackWidth="90"
- SetPointWidth="90" CommandWidth="60" Visibility="Collapsed"/>
- </StackPanel>
- </controls:HeaderPanel>
- </WrapPanel>
- </UserControl>
|