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

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

TestProject.zip
다운로드

▶ 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">
    <Grid Margin="10">
        <Border
            BorderBrush="Gray"
            BorderThickness="1">
            <Rectangle>
                <Rectangle.Fill>
                    <DrawingBrush
                        Viewport="0 0 10 10"
                        ViewportUnits="Absolute"
                        TileMode="Tile">
                        <DrawingBrush.Drawing>
                            <DrawingGroup>
                                <GeometryDrawing Brush="#99ffffff">
                                    <GeometryDrawing.Geometry>
                                        <RectangleGeometry Rect="0 0 1 1" />
                                    </GeometryDrawing.Geometry>
                                </GeometryDrawing>
                                <GeometryDrawing
                                    Geometry="M 0 0 L 1 0 1 0.1 0 0.1 Z"
                                    Brush="#99ccccff" />
                                <GeometryDrawing
                                    Geometry="M 0 0 L 0 1 0.1 1 0.1 0 Z"
                                    Brush="#99ccccff" />
                            </DrawingGroup>
                        </DrawingBrush.Drawing>
                    </DrawingBrush>
                </Rectangle.Fill>
            </Rectangle>
        </Border>
    </Grid>
</Window>
728x90
그리드형(광고전용)
Posted by icodebroker
,