2013-07-25 96 views

回答

7

嘗試包括你PathFigureCollectionPathGeometry對象,然後你可以通過Bounds屬性訪問的邊框。

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

+1,當然你必須將現有的'PathFigureCollection'分配到'Figures'屬性,而不是一個新的。還有一個構造函數需要一個'PathFigureCollection'參數,這樣你就可以簡單地寫'var bounds = new PathGeometry(figure).Bounds;' – Clemens