在WPF中,如何使用“路径标记语法”绘制复合几何?

时间:2018-08-31 09:50:46

标签: c# wpf

我正尝试使用Path Markup Syntax绘制图形,如下所示:

enter image description here

然后我在xaml中尝试了此操作

<Path Margin="20" StrokeThickness="1" Fill="Black" Data="M0,0L15,10L0,20ZM5,0L20,10L5,20"></Path>

我明白了:

enter image description here

那么,正确的语法是什么?

1 个答案:

答案 0 :(得分:0)

绘制两条单线而不是折线图:

<Path Margin="20" Fill="Black" Stroke="Black" StrokeThickness="1"
      StrokeStartLineCap="Round" StrokeEndLineCap="Round"
      Data="M0,0 L15,10 0,20Z M5,0 L20,10 M5,20 L20,10"/>