是否可以在c#中找到PathFigureCollection对象的边界矩形? (我知道如何使用FrameworkElement获取它,但这不是我想要的)
答案 0 :(得分:7)
尝试将PathFigureCollection
包含在PathGeometry
对象中,然后您可以通过Bounds
属性访问边界矩形。
示例强>
var geometry = new PathGeometry {
Figures = new PathFigureCollection()
};
var boundingRect = geometry.Bounds;