첨부 실행 코드는 나눔고딕코딩 폰트를 사용합니다.
728x90
반응형
728x170

■ ArcSegment 엘리먼트를 사용하는 방법을 보여준다.

▶ 예제 코드 (XAML)

<Path
    StrokeThickness="10"
    Stroke="Gold">
    <Path.Data>
        <PathGeometry>
            <PathGeometry.Figures>
                <PathFigure StartPoint="200 0">
                    <PathFigure.Segments>
                        <ArcSegment
                            Size="50 50"
                            IsLargeArc="True"
                            SweepDirection="Clockwise"
                            Point="0 0" />
                    </PathFigure.Segments>
                </PathFigure>
            </PathGeometry.Figures>
        </PathGeometry>
    </Path.Data>
</Path>
728x90
반응형
그리드형(광고전용)
Posted by icodebroker

댓글을 달아 주세요