方法 : PathGeometry 内に複数のサブパスを作成する
更新 : 2007 年 11 月
この例では、PathGeometry 内に複数のサブパスを作成する方法を示します。複数のサブパスを作成するには、サブパスごとに PathFigure を作成します。
使用例
次の例では、それぞれが三角形の 2 つのサブパスを作成します。
<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 の属性構文を使用して複数のサブパスを作成する方法を次の例に示します。それぞれが三角形を描画する 2 つのサブパスが作成されるように、各 M が新しいサブパスを作成します。
<Path Stroke="Black" StrokeThickness="1"
Data="M 10,100 L 100,100 100,50 Z M 10,10 100,10 100,40 Z" />
(この属性構文は、実際には PathGeometry の軽量バージョンである StreamGeometry を作成します。詳細については、「パス マークアップ構文」のページを参照してください。)