PressureTransducer.xaml 822 B

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