使用相对坐标从c#绘制路径

时间:2012-03-01 09:53:44

标签: c# wpf graphics

在Path的数据属性中是否存在与C#等效的XAML小写命令?

XAML:

<Path Stroke="Black" Data="M 100,200 c 100,25 400,350 400,175" />

从我所看到的LineSegmenet,BezierSegment和其他类型的段不会暴露出一个建议使用相对坐标而不是默认绝对值的属性。

1 个答案:

答案 0 :(得分:3)

你可以做这样的事情

Path p=new Path();
p.Data = Geometry.Parse("M 100,200 c 100,25 400,350 400,175");
p.Stroke =new SolidColorBrush(Colors.Black);