■ ImageBrush 엘리먼트의 TileMode 속성을 사용해 타일 모드를 설정하는 방법을 보여준다.
▶ 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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 |
<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="TestProject" FontFamily="나눔고딕코딩" FontSize="16"> <Window.Resources> <Style TargetType="{x:Type TextBlock}"> <Setter Property="Margin" Value="5" /> </Style> <Style TargetType="{x:Type Rectangle}"> <Setter Property="Margin" Value="5" /> </Style> </Window.Resources> <Grid HorizontalAlignment="Center" VerticalAlignment="Center"> <Grid.ColumnDefinitions> <ColumnDefinition Width="Auto" /> <ColumnDefinition Width="Auto" /> <ColumnDefinition Width="Auto" /> </Grid.ColumnDefinitions> <Grid.RowDefinitions> <RowDefinition Height="Auto" /> <RowDefinition Height="Auto" /> <RowDefinition Height="Auto" /> <RowDefinition Height="Auto" /> </Grid.RowDefinitions> <TextBlock Grid.Row="0" Grid.Column="0">No Tile</TextBlock> <Rectangle Grid.Row="1" Grid.Column="0" Width="150" Height="150" Stroke="Black" StrokeThickness="1"> <Rectangle.Fill> <ImageBrush ViewportUnits="Absolute" Viewport="0 0 50 50" AlignmentX="Left" AlignmentY="Top" ImageSource="IMAGE\triangle.jpg" /> </Rectangle.Fill> </Rectangle> <TextBlock Grid.Row="0" Grid.Column="1">TileMode="Tile"</TextBlock> <Rectangle Grid.Row="1" Grid.Column="1" Width="150" Height="150" StrokeThickness="1" Stroke="LimeGreen"> <Rectangle.Fill> <ImageBrush Viewport="0 0 50 50" ViewportUnits="Absolute" TileMode="Tile" AlignmentX="Left" AlignmentY="Top" ImageSource="IMAGE\triangle.jpg" /> </Rectangle.Fill> </Rectangle> <TextBlock Grid.Row="0" Grid.Column="2">TileMode="FlipX"</TextBlock> <Rectangle Grid.Row="1" Grid.Column="2" Width="150" Height="150" StrokeThickness="1" Stroke="LimeGreen"> <Rectangle.Fill> <ImageBrush ViewportUnits="Absolute" Viewport="0 0 50 50" TileMode="FlipX" AlignmentX="Left" AlignmentY="Top" ImageSource="IMAGE\triangle.jpg" /> </Rectangle.Fill> </Rectangle> <TextBlock Grid.Row="2" Grid.Column="1">TileMode="FlipY"</TextBlock> <Rectangle Grid.Row="3" Grid.Column="1" Width="150" Height="150" StrokeThickness="1" Stroke="LimeGreen"> <Rectangle.Fill> <ImageBrush ViewportUnits="Absolute" Viewport="0 0 50 50" TileMode="FlipY" AlignmentX="Left" AlignmentY="Top" ImageSource="IMAGE\triangle.jpg" /> </Rectangle.Fill> </Rectangle> <TextBlock Grid.Row="2" Grid.Column="2">TileMode="FlipXY"</TextBlock> <Rectangle Grid.Row="3" Grid.Column="2" Width="150" Height="150" StrokeThickness="1" Stroke="LimeGreen"> <Rectangle.Fill> <ImageBrush ViewportUnits="Absolute" Viewport="0 0 50 50" TileMode="FlipXY" AlignmentX="Left" AlignmentY="Top" ImageSource="IMAGE\triangle.jpg" /> </Rectangle.Fill> </Rectangle> </Grid> </Window> |