3
是否有可能在C#中找到PathFigureCollection對象的邊界矩形? (我知道如何使用FrameworkElement的得到它,但是這不是我想要的)如何獲得PathFigureCollection邊界矩形
是否有可能在C#中找到PathFigureCollection對象的邊界矩形? (我知道如何使用FrameworkElement的得到它,但是這不是我想要的)如何獲得PathFigureCollection邊界矩形
嘗試包括你PathFigureCollection
在PathGeometry
對象,然後你可以通過Bounds
屬性訪問的邊框。
例
var geometry = new PathGeometry {
Figures = new PathFigureCollection()
};
var boundingRect = geometry.Bounds;
+1,當然你必須將現有的'PathFigureCollection'分配到'Figures'屬性,而不是一個新的。還有一個構造函數需要一個'PathFigureCollection'參數,這樣你就可以簡單地寫'var bounds = new PathGeometry(figure).Bounds;' – Clemens