c# - How to draw shapes with Path element? -
how draw following path elements in xaml?
- <<
- >>
- ->
- |<
- >|
- <
- >
thanks!
it's been while since did this, dug out of old code.
<path fill="gray" data="m 10 0 l 20 10 l 0 10 z"/>
that draws small arrow. recall, text decodes "move (10,0), line (20,10), line (0,10), return beginning , close shape".
that should started. there more commands can on msdn.
Comments
Post a Comment