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

问题描述 投票:0回答:1

我正在尝试用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

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

c# wpf
1个回答
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"/>
© www.soinside.com 2019 - 2024. All rights reserved.