c# - How to draw shapes with Path element? -


how draw following path elements in xaml?

  1. <<
  2. >>
  3. ->
  4. |<
  5. >|
  6. <
  7. >

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

Popular posts from this blog

linux - Mailx and Gmail nss config dir -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -