如何获取PathFigureCollection边界矩形

时间:2013-07-25 13:09:41

标签: wpf path bounding-box

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

1 个答案:

答案 0 :(得分:7)

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

示例     

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