HOW TO:在 PathGeometry 內建立多個子路徑
更新:2007 年 11 月
本範例示範如何在 PathGeometry 中建立多個子路徑。若要建立多個子路徑,請為每個子路徑建立 PathFigure。
範例
下列範例會建立兩個子路徑,每一個路徑會建立一個三角形。
<Path Stroke="Black" StrokeThickness="1">
<Path.Data>
<PathGeometry>
<PathGeometry.Figures>
<PathFigureCollection>
<PathFigure IsClosed="True" StartPoint="10,100">
<PathFigure.Segments>
<PathSegmentCollection>
<LineSegment Point="100,100" />
<LineSegment Point="100,50" />
</PathSegmentCollection>
</PathFigure.Segments>
</PathFigure>
<PathFigure IsClosed="True" StartPoint="10,10">
<PathFigure.Segments>
<PathSegmentCollection>
<LineSegment Point="100,10" />
<LineSegment Point="100,40" />
</PathSegmentCollection>
</PathFigure.Segments>
</PathFigure>
</PathFigureCollection>
</PathGeometry.Figures>
</PathGeometry>
</Path.Data>
</Path>
下列範例示範如何使用 Path 和 XAML 屬性語法建立多個子路徑。每個 M 都會建立新的子路徑,因此這個範例會建立兩個子路徑,每個子路徑都會繪製一個三角形。
<Path Stroke="Black" StrokeThickness="1"
Data="M 10,100 L 100,100 100,50 Z M 10,10 100,10 100,40 Z" />
(請注意,此屬性語法實際上會建立 StreamGeometry,這是 PathGeometry 的輕量版。如需詳細資訊,請參閱路徑標記語法網頁)。