1234567891011121314151617 |
- <UserControl x:Class="Aitex.Core.UI.DeviceControl.AITBoostPump"
- 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"
- mc:Ignorable="d"
- d:DesignHeight="300" d:DesignWidth="300">
- <Grid MouseLeftButtonUp="Grid_MouseLeftButtonUp" Cursor="Hand" >
- <Image Width="55" Height="23" x:Name="imagePicture" Source="/Core;component/Resources/Pump/boost_pump_off.png" />
- <Image Width="55" Height="23" x:Name="imagePictureEnable" Visibility="Hidden" Source="/Core;component/Resources/Pump/boost_pump_enabled.png" />
- <Label Width="55" Height="23" Content="---" VerticalContentAlignment="Bottom" FontFamily="Verdana" FontSize="9" HorizontalContentAlignment="Center" x:Name="LabelPressureSetPoint" Padding="0,0,0,1" Foreground="Black" />
- <Label Width="55" Height="23" Content="---" VerticalContentAlignment="Top" FontFamily="Verdana" FontSize="9" HorizontalContentAlignment="Center" x:Name="LabelFrequency" Padding="0,0,0,1" Foreground="White" />
- </Grid>
- </UserControl>
|