Arrow.xaml 692 B

12345678910111213141516
  1. <UserControl x:Class="Aitex.Core.UI.Control.Arrow"
  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" MinHeight="20" MinWidth="20" MaxHeight="20" MaxWidth="20" BorderThickness="1 1 1 1">
  5. <UserControl.Resources>
  6. <Style TargetType="{x:Type Polygon}" />
  7. </UserControl.Resources>
  8. <UserControl.RenderTransform>
  9. <RotateTransform x:Name="rotateTransform" Angle="0" CenterX="10" CenterY="10"/>
  10. </UserControl.RenderTransform>
  11. <Grid>
  12. <Polygon Name="arrow1" Points="0,5 10,10 0,15" Stroke="Black" StrokeThickness="0"/>
  13. </Grid>
  14. </UserControl>