■ VisualBrush 엘리먼트를 사용해 해시 패턴을 만드는 방법을 보여준다.
▶ MainWindow.xaml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
<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="VisualBrush 엘리먼트 : 해시 패턴 사용하기" FontFamily="나눔고딕코딩" FontSize="16"> <Window.Resources> <VisualBrush x:Key="DotFillVisualBrushKey" TileMode="Tile" ViewportUnits="Absolute" Viewport="0 0 10 10" ViewboxUnits="Absolute" Viewbox="0 0 12 12"> <VisualBrush.Visual> <Ellipse Width="10" Height="10" Fill="#00c0ff" /> </VisualBrush.Visual> </VisualBrush> <VisualBrush x:Key="HatchVisualBrushKey" TileMode="Tile" ViewportUnits="Absolute" Viewport="0 0 10 10" ViewboxUnits="Absolute" Viewbox="0 0 10 10"> <VisualBrush.Visual> <Canvas> <Rectangle Width="10" Height="10" Fill="Azure" /> <Path Stroke="Purple" Data="M 0 0 L 10 10" /> <Path Stroke="Purple" Data="M 10 0 L 0 10" /> </Canvas> </VisualBrush.Visual> </VisualBrush> </Window.Resources> <Canvas> <Rectangle Canvas.Left="100" Canvas.Top="100" Width="200" Height="200" Fill="{StaticResource DotFillVisualBrushKey}" /> <Rectangle Canvas.Left="400" Canvas.Top="100" Width="200" Height="200" Fill="{StaticResource HatchVisualBrushKey}" /> </Canvas> </Window> |