gpt4 book ai didi

wpf - 如何在 WPF 中对路径进行分组?

转载 作者:行者123 更新时间:2023-12-01 22:41:05 26 4
gpt4 key购买 nike

我正在使用路径来创建特定的形状。对所有路径进行分组的最佳方法是什么,这样我以后就可以在另一个位置使用它们而无需重新定位路径?

任何建议都会很好,谢谢!

最佳答案

如果问题是关于只有一个填充和描边的复杂形状,一个选项是只使用一个带有 PathGeometry 的 Path 实例。多个 Figures .请参阅 MSDN 中的以下示例:

<Path Stroke="Black" StrokeThickness="1">
<Path.Data>
<PathGeometry>
<PathGeometry.Figures>
<PathFigureCollection>
<PathFigure IsClosed="True" StartPoint="10,100">
<PathFigure.Segments>
<PathSegmentCollection>
<LineSegment Point="100,100" />
<LineSegment Point="100,50" />
</PathSegmentCollection>
</PathFigure.Segments>
</PathFigure>
<PathFigure IsClosed="True" StartPoint="10,10">
<PathFigure.Segments>
<PathSegmentCollection>
<LineSegment Point="100,10" />
<LineSegment Point="100,40" />
</PathSegmentCollection>
</PathFigure.Segments>
</PathFigure>
</PathFigureCollection>
</PathGeometry.Figures>
</PathGeometry>
</Path.Data>
</Path>

关于wpf - 如何在 WPF 中对路径进行分组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13227844/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com