HydraulicControlOneWayValue.xaml 1.2 KB

1234567891011121314151617181920212223242526
  1.  <UserControl x:Class="Aitex.Core.UI.Control.HydraulicControlOneWayValue"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. mc:Ignorable="d" Height="20" Width="20" BorderThickness="1">
  7. <Grid >
  8. <Border BorderBrush="Black" BorderThickness="0,1,0,0" Margin="1,1,5,-1">
  9. <Border.RenderTransform>
  10. <RotateTransform Angle="45"></RotateTransform>
  11. </Border.RenderTransform>
  12. </Border>
  13. <Border BorderBrush="Black" BorderThickness="0,1,0,0" Margin="8,9,-1,-9">
  14. <Border.RenderTransform>
  15. <RotateTransform Angle="-45"></RotateTransform>
  16. </Border.RenderTransform>
  17. </Border>
  18. <Border BorderBrush="Black" CornerRadius="30" Width="9" Height="9" BorderThickness="1" Margin="4,-2,5,11" >
  19. </Border>
  20. <Border BorderBrush="Black" BorderThickness="0.5" Margin="8,9,9,1" >
  21. </Border>
  22. </Grid>
  23. </UserControl>