PipeControl.xaml 825 B

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