| <UserControl x:Class="Aitex.Core.UI.Control.PressureTransducer"    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"    Height="25" Width="42" >    <Canvas Height="25" Width="40"  MouseLeftButtonUp="Canvas_MouseLeftButtonUp" >        <Ellipse Stroke="Black" Height="23" Width="36" x:Name="EllipsePT" Panel.ZIndex="1000" Fill="LightBlue" Opacity="1" Canvas.Top="1" Canvas.Left="2" />        <!--<Line X1="6" Y1="16" X2="15" Y2="5" Stroke="Black" StrokeThickness="1.2" StrokeStartLineCap="Round" StrokeEndLineCap="Round" />-->        <Label Name="label1" Foreground="White"  FontSize="10" HorizontalContentAlignment="Center" Height="23" Panel.ZIndex="1001" Canvas.Left="0" Canvas.Top="2" Width="40">DPT</Label>    </Canvas></UserControl>
 |