Created
May 5, 2017 03:30
-
-
Save ajai8085/59a6564c36d540883fce259921649ca2 to your computer and use it in GitHub Desktop.
WPF Path to draw Arrow left right top bottom
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Window x:Class="WpfApplication6.Window1" | |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
Title="Window1" Height="300" Width="300"> | |
<Grid> | |
<StackPanel> | |
<Path Fill="Black" Data="M 0 10 L 20 10 L 10 0 Z"/> | |
<Path Fill="Black" Data="M 0 0 L 10 10 L 20 0 Z"/> | |
<Path Fill="Black" Data="M 0 10 L 10 0 L 10 20 Z"/> | |
<Path Fill="Black" Data="M 0 0 L 10 10 L 0 20 Z"/> | |
</StackPanel> | |
</Grid> | |
</Window> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment