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

■ DrawingBrush 엘리먼트의 GeometryDrawing 객체를 사용해 격자 배경 브러시를 만드는 방법을 보여준다.

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="DrawingBrush 엘리먼트 : GeometryDrawing 객체를 사용해 격자 배경 브러시 만들기"
    FontFamily="나눔고딕코딩"
    FontSize="16">
    <Ellipse
        HorizontalAlignment="Center"
        VerticalAlignment="Center"
        Width="300"
        Height="300"
        Stroke="DarkGray"
        StrokeThickness="1">
        <Ellipse.Fill>
            <DrawingBrush
                Viewport="0 0 10 10"
                ViewportUnits="Absolute"
                TileMode="Tile">
                <DrawingBrush.Drawing>
                    <DrawingGroup>
                        <DrawingGroup.Children>
                            <GeometryDrawing
                                Brush="#66ccccff"
                                Geometry="M 0 0 L 1 0 1 0.1 0 0.1 Z" />
                            <GeometryDrawing
                                Brush="#66ccccff"
                                Geometry="M 0 0 L 0 1 0.1 1 0.1 0 Z" />
                        </DrawingGroup.Children>
                    </DrawingGroup>
                </DrawingBrush.Drawing>
            </DrawingBrush>
        </Ellipse.Fill>
    </Ellipse>
</Window>
728x90
반응형
그리드형(광고전용)
Posted by icodebroker

댓글을 달아 주세요