gpt4 book ai didi

c# - 在 WPF 中转换 PathGeometry

转载 作者:行者123 更新时间:2023-11-30 13:54:39 24 4
gpt4 key购买 nike

有没有一种简单的方法可以在 WPF (C#) 中转换 PathGeometry?

有了一个 PathGeometry (System.Windows.Media) 和一个 Vector (System.Windows.Vector),我想翻译整个几何图形,而不需要分析每个图形及其段和相应的点。代码非常简单,但我正在寻找一种使用 WPF (C#) 已经提供的标准功能的方法。有什么想法吗?

最佳答案

将 Geometry 的 Transform 属性设置为适当的 TranslateTransform,例如

Geometry geometry = ...
Vector translation = ...

geometry.Transform = new TranslateTransform(translation.X, translation.Y);

关于c# - 在 WPF 中转换 PathGeometry,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40454103/

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