0

我不知道,如何在xaml(Windows Store App)中创建此路径。

在此处输入图像描述

可能有人知道吗?
注意:我只能使用xaml.

4

1 回答 1

1

您可以像这样组合三个弧段

<Path Stroke="DarkGreen" StrokeThickness="2"
 Data="M 50,0 A 100,100 0 0 0 0,86.6 A 100,100 0 0 0 100,86.6 A 100,100 0 0 0 50,0 Z"/>

上述路径将三个半径为 100 的圆段放置在边长为 100 的等边三角形的三个角上。该三角形的高度为 86.6。

编写上述路径的更详细的方法是:

<Path Stroke="DarkGreen" StrokeThickness="2">
    <Path.Data>
        <PathGeometry>
            <PathFigure StartPoint="50,0" IsClosed="True">
                <ArcSegment Size="100,100" Point="0,86.6"/>
                <ArcSegment Size="100,100" Point="100,86.6"/>
                <ArcSegment Size="100,100" Point="50,0"/>
            </PathFigure>
        </PathGeometry>
    </Path.Data>
</Path>
于 2013-07-17T10:46:20.300 回答