| 1234567891011121314151617181920212223242526 | <UserControl x:Class="Aitex.Core.UI.Control.AnalogControl2Jet"             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:c="clr-namespace:CalcBinding;assembly=CalcBinding"             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:converters="clr-namespace:MECF.Framework.UI.Core.Converters"             mc:Ignorable="d"  Height="38" Width="45" BorderThickness="1"  x:Name="Self">    <UserControl.Resources>        <converters:BoolVisibilityConverter  x:Key="boolVisibilityConverter"/>    </UserControl.Resources>    <Grid  Height="38"  MouseLeftButtonUp="Grid_MouseLeftButtonUp" Cursor="Hand"  Opacity="1" MouseEnter="Grid_MouseEnter">        <Grid Height="20"  Margin="0,-20,0,0">            <Border Background="Transparent" x:Name="bdRectangle" BorderThickness="1">                <Rectangle  RadiusX="2" RadiusY="2" Name="rectBkground" Stroke="Gray" Margin="1" Opacity="1" Fill="Green" StrokeThickness="1"/>            </Border>            <TextBlock FontFamily="Arial,SimSun" FontSize="14"  Text="{Binding ElementName=Self, Path=ShowValue ,Mode=OneWay}"  VerticalAlignment="Center" HorizontalAlignment="Center" x:Name="labelValue1"  Foreground="Black">                          </TextBlock>        </Grid>        <Grid Height="18"  Margin="1,14,1,1">            <Rectangle Name="rectSetPoint" RadiusX="2" RadiusY="2" Stroke="Gray" Margin="1" Opacity="1" Fill="#999999" StrokeThickness="1"/>            <TextBlock Text="0.0" FontFamily="Arial,SimSun" FontSize="10" VerticalAlignment="Center" HorizontalAlignment="Center"  x:Name="labelSetPoint"   Foreground="Black" />        </Grid>    </Grid></UserControl>
 |