12345678910111213141516171819202122232425262728293031 |
- <UserControl x:Class="Aitex.Triton160.UI.Views.Control.GasLineView"
- 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:control="clr-namespace:Aitex.Core.UI.Control;assembly=Core"
- xmlns:deviceControl="clr-namespace:Aitex.Core.UI.DeviceControl;assembly=Core"
- mc:Ignorable="d" x:Name="self"
- d:DesignHeight="200" d:DesignWidth="70" Background="Transparent">
- <Grid Width="70" Height="200">
- <TextBlock Width="70" FontSize="12" Text="{Binding ElementName=self, Path=MFCData.DeviceSchematicId }" TextAlignment="Center" Margin="0,3,0,0" VerticalAlignment="Top" />
- <TextBlock Width="70" FontSize="12" Text="{Binding ElementName=self, Path=MFCData.DisplayName, StringFormat={}({0})}" TextAlignment="Center" Margin="0,22,0,0" VerticalAlignment="Top" />
- <Image Width="20" Height="160" Source="/Triton160UI;component/Resources/mfcPipe.png" Margin="17,40,18,0" />
- <control:FlowPipeV2 Width="162" Height="8" IsFlowing="{Binding ElementName=self, Path=ValveData.Feedback}" Margin="31,37,-138,155" >
- <control:FlowPipeV2.RenderTransform>
- <RotateTransform Angle="90"></RotateTransform>
- </control:FlowPipeV2.RenderTransform>
- </control:FlowPipeV2>
-
- <control:MfcControl Height="30" Width="54" DeviceData="{Binding ElementName=self, Path=MFCData}" Command="{Binding ElementName=self, Path=Command}" Margin="0,89,1,81" />
- <deviceControl:AITGasValve ValveOpenOrientation="Vertical" DeviceData="{Binding ElementName=self, Path=ValveData}" Command="{Binding ElementName=self, Path=Command}" Margin="11,128,12,40" />
-
-
- </Grid>
- </UserControl>
|