是否可以在 c# 中找到 PathFigureCollection 对象的边界矩形?
(我知道如何使用 FrameworkElement 获得它,但这不是我想要的)

最佳答案

尝试将您的 PathFigureCollection 包含在 PathGeometry 对象中,然后您可以通过 Bounds 属性访问边界矩形。

示例

var geometry = new PathGeometry {
    Figures = new PathFigureCollection()
};
var boundingRect = geometry.Bounds;

关于wpf - 如何获取 PathFigureCollection 边界矩形,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17858985/

10-12 03:22