DoubleTriangle.xaml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <UserControl x:Class="Aitex.Core.UI.Control.DoubleTriangle"
  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" Width="15" Height="15" BorderBrush="Black">
  7. <Grid >
  8. <Border Width="10.5" Height="10" BorderBrush="Black" BorderThickness="1,1,1,1" Margin="0,7,4,-2" >
  9. <Border.RenderTransform>
  10. <TransformGroup>
  11. <ScaleTransform/>
  12. <SkewTransform/>
  13. <RotateTransform Angle="-45"/>
  14. <TranslateTransform/>
  15. </TransformGroup>
  16. </Border.RenderTransform>
  17. </Border>
  18. <Border Height="10" BorderBrush="Black" BorderThickness="0,0,0,0.7" Margin="1,-3,1,8" >
  19. <Border.RenderTransform>
  20. <TransformGroup>
  21. <ScaleTransform/>
  22. <SkewTransform/>
  23. <TranslateTransform/>
  24. </TransformGroup>
  25. </Border.RenderTransform>
  26. </Border>
  27. </Grid>
  28. </UserControl>