| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <UserControl x:Class="SummaryModule.Controls.BaseN2Purge"
- 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:local="clr-namespace:SummaryModule.Controls"
- mc:Ignorable="d"
- x:Name="This"
- d:DesignHeight="450" d:DesignWidth="800">
- <Grid TextElement.FontSize="14">
- <Grid.RowDefinitions>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="4"/>
- <RowDefinition Height="26"/>
- <RowDefinition Height="12"/>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="4"/>
- <RowDefinition Height="26"/>
- <RowDefinition Height="12"/>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="4"/>
- <RowDefinition Height="26"/>
- <RowDefinition Height="8"/>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="8"/>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="8"/>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="12"/>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="4"/>
- <RowDefinition Height="26"/>
- </Grid.RowDefinitions>
- <TextBlock VerticalAlignment="Center">N2 Purge Status</TextBlock>
- <Border Grid.Row="2" Background="White" CornerRadius="4">
- <TextBlock VerticalAlignment="Center" Margin="4,0" Text="{Binding ElementName=This, Path=DataSource.N2PurgeStatus}" HorizontalAlignment="Center"/>
- </Border>
- <TextBlock Grid.Row="4" VerticalAlignment="Center">O2 Density Ctrl Status</TextBlock>
- <Border Grid.Row="6" Background="White" CornerRadius="4">
- <TextBlock VerticalAlignment="Center" Margin="4,0" Text="{Binding ElementName=This, Path=DataSource.O2DensityCtrlStatus}" HorizontalAlignment="Center"/>
- </Border>
- <TextBlock Grid.Row="8" VerticalAlignment="Center">O2 Density (ppm)</TextBlock>
- <Border Grid.Row="10" Background="White" CornerRadius="4">
- <TextBlock VerticalAlignment="Center" Margin="4,0" Text="{Binding ElementName=This, Path=DataSource.O2Position}" HorizontalAlignment="Center"/>
- </Border>
- <Grid Grid.Row="12" Height="26">
- <Grid.ColumnDefinitions>
- <ColumnDefinition/>
- <ColumnDefinition Width="32"/>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <Border Background="White" CornerRadius="4">
- <TextBlock VerticalAlignment="Center" Margin="4,0" HorizontalAlignment="Center" Text="{Binding ElementName=This, Path=DataSource.O2Denstiy, StringFormat=0.00}"/>
- </Border>
- <TextBlock Grid.Column="1" VerticalAlignment="Center" HorizontalAlignment="Center">/</TextBlock>
- <Border Grid.Column="2" Background="White" CornerRadius="4">
- <TextBlock VerticalAlignment="Center" Margin="4,0" HorizontalAlignment="Center" Text="{Binding ElementName=This, Path=DataSource.O2Limit, StringFormat=0.00}"/>
- </Border>
- </Grid>
- <TextBlock Grid.Row="18" VerticalAlignment="Center">Transfer Room N2 Total (L)</TextBlock>
- <Grid Grid.Row="20" >
- <Grid.ColumnDefinitions>
- <ColumnDefinition/>
- <ColumnDefinition Width="32"/>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <Border Background="White" CornerRadius="4">
- <TextBlock VerticalAlignment="Center" Margin="4,0" Text="{Binding ElementName=This, Path=DataSource.N2Current, StringFormat=0.00}" HorizontalAlignment="Center"/>
- </Border>
- <TextBlock Grid.Column="1" VerticalAlignment="Center" HorizontalAlignment="Center">/</TextBlock>
- <Border Grid.Column="2" Background="White" CornerRadius="4">
- <TextBlock VerticalAlignment="Center" Margin="4,0" Text="{Binding ElementName=This, Path=DataSource.N2Total, StringFormat=0.00}" HorizontalAlignment="Center"/>
- </Border>
- </Grid>
- </Grid>
- </UserControl>
|