** 참고 : MSDN에서 "경로 태그 구문" -> "경로 미니 언어"로 검색해서 공부할 것~



[FrmPathData.xaml]



<
UserControl x:Class="RiaGeometry.FrmPathData"

    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"

    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"

    mc:Ignorable="d"

    d:DesignHeight="300" d:DesignWidth="400">

   

    <Grid x:Name="LayoutRoot" Background="White">

        <Path Stroke="Black" StrokeThickness="5" Fill="Pink">

            <Path.Data>

                <PathGeometry>

                    <PathFigure StartPoint="20, 20" IsClosed="True">

                        <LineSegment Point="20, 90"></LineSegment>

                        <LineSegment Point="90, 90"></LineSegment>

                    </PathFigure>

                </PathGeometry>

            </Path.Data>

        </Path>

 

        <!-- 위코드를 아래 코드로 줄여서 표현 : 경로 태그 구문/미니 언어 -->

        <Path Stroke="Black" StrokeThickness="5" Fill="Pink"

            Data="M 120,120 L 120,200 L 200,200 Z">

        </Path>

    </Grid>

</UserControl>

 

 













Posted by holland14
: