| 1234567891011121314151617 | <UserControl x:Class="Aitex.Core.UI.Control.PipeControl"    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"    Height="20" Width="20">    <Grid Name="grid">        <!--<Grid.ContextMenu>                    <ContextMenu>                <MenuItem Header="Gas On" Click="GasOn" />                <MenuItem Header="Gas Off" Click="GasOff" />            </ContextMenu>        </Grid.ContextMenu>-->        <!--<Line X1="0" Y1="10" X2="20" Y2="10" Stroke="Gray" StrokeThickness="1" Name="Line1Border" StrokeStartLineCap="Round" StrokeEndLineCap="Round" />-->        <Line X1="0" Y1="10" X2="20" Y2="10" Stroke="Aqua" StrokeThickness="1"  Name="Line1Center" StrokeStartLineCap="Round" StrokeEndLineCap="Round" />    </Grid></UserControl>
 |