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

TestProject.zip
0.01MB

▶ MainWindow.xaml

<Window x:Class="TestProject.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Width="800"
    Height="600"
    Title="Path 엘리먼트 : RSS 아이콘 만들기"
    FontFamily="나눔고딕코딩"
    FontSize="16">
    <Grid>
        <Grid
            HorizontalAlignment="Center"
            VerticalAlignment="Center">
            <Rectangle
                Width="50"
                Height="50"
                RadiusX="5"
                RadiusY="5"
                Fill="Orange" />
            <Canvas
                Margin="-1 1 0 0">
                <Ellipse Canvas.Left="10" Canvas.Top="30"
                    Width="10"
                    Height="10"
                    Fill="White"  />
                <Path
                    StrokeThickness="5"
                    Stroke="White"
                    StrokeStartLineCap="Round"
                    StrokeEndLineCap="Round"
                    Data="M 15 20 a 15 15 90 0 1 15 15" />
                <Path
                    StrokeThickness="5"
                    Stroke="White"
                    StrokeStartLineCap="Round"
                    StrokeEndLineCap="Round"
                    Data="M 15 10 a 25 25 90 0 1 25 25" />
            </Canvas>
        </Grid>
    </Grid>
</Window>
728x90
반응형
그리드형(광고전용)
Posted by icodebroker

댓글을 달아 주세요