-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathArrow.xaml
More file actions
17 lines (16 loc) · 771 Bytes
/
Arrow.xaml
File metadata and controls
17 lines (16 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<UserControl x:Class="Arrow" x:ClassModifier="Friend"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d" >
<Path x:Name="Arrow" Stroke="black" StrokeThickness="0.8" Fill="White" Opacity="1"
Data="M 7,0
L 1,8 L 5,8
L 5,20 L 1,20
L 7,28
L 13,20 L 9,20
L 9,8 L 13,8
Z">
</Path>
</UserControl>