728x90
반응형
728x170
■ ImageBrush 엘리먼트를 사용해 TextBlock 객체에서 이미지를 그리는 방법을 보여준다.
▶ 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="TestProject"
FontFamily="나눔고딕코딩"
FontSize="16">
<Window.Resources>
<Style TargetType="{x:Type TextBlock}">
<Setter Property="Margin" Value="10" />
</Style>
<Style TargetType="{x:Type Image}">
<Setter Property="Margin" Value="10" />
</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"
FontWeight="Bold">
The Image
</TextBlock>
<TextBlock Grid.Row="0" Grid.Column="1"
FontWeight="Bold">
Applied to Text Without Tiling
</TextBlock>
<TextBlock Grid.Row="0" Grid.Column="2"
FontWeight="Bold">
Applied to Text With Tiling
</TextBlock>
<Image Grid.Row="1" Grid.Column="0"
Width="100"
Height="100"
Source="IMAGE\purpleblock.jpg" />
<TextBlock Grid.Row="1" Grid.Column="1"
FontFamily="Verdana"
FontSize="70pt"
FontWeight="Bold">
<TextBlock.Foreground>
<ImageBrush ImageSource="IMAGE\purpleblock.jpg" />
</TextBlock.Foreground>
Text
</TextBlock>
<TextBlock Grid.Row="1" Grid.Column="2"
FontFamily="Verdana"
FontSize="70pt"
FontWeight="Bold">
<TextBlock.Foreground>
<ImageBrush
ViewportUnits="Absolute"
Viewport="0 0 25 25"
TileMode="Tile"
ImageSource="IMAGE\purpleblock.jpg" />
</TextBlock.Foreground>
Text
</TextBlock>
<Image Grid.Row="2" Grid.Column="0"
Width="100"
Height="100"
Source="IMAGE\square.jpg" />
<TextBlock Grid.Row="2" Grid.Column="1"
FontFamily="Verdana"
FontSize="70pt"
FontWeight="Bold">
<TextBlock.Foreground>
<ImageBrush ImageSource="IMAGE\square.jpg" />
</TextBlock.Foreground>
Text
</TextBlock>
<TextBlock Grid.Row="2" Grid.Column="2"
FontFamily="Verdana"
FontSize="70pt"
FontWeight="Bold">
<TextBlock.Foreground>
<ImageBrush
ViewportUnits="Absolute"
Viewport="0 0 25 25"
TileMode="Tile"
ImageSource="IMAGE\square.jpg" />
</TextBlock.Foreground>
Text
</TextBlock>
<Image Grid.Row="3" Grid.Column="0"
Width="100"
Height="100"
Source="IMAGE\pinkcherries.jpg" />
<TextBlock Grid.Row="3" Grid.Column="1"
FontFamily="Verdana"
FontSize="70pt"
FontWeight="Bold">
<TextBlock.Foreground>
<ImageBrush ImageSource="IMAGE\pinkcherries.jpg" />
</TextBlock.Foreground>
Text
</TextBlock>
<TextBlock Grid.Row="3" Grid.Column="2"
FontFamily="Verdana"
FontSize="70pt"
FontWeight="Bold">
<TextBlock.Foreground>
<ImageBrush
ViewportUnits="Absolute"
Viewport="0 0 25 25"
TileMode="Tile"
ImageSource="IMAGE\pinkcherries.jpg" />
</TextBlock.Foreground>
Text
</TextBlock>
</Grid>
</Window>
728x90
반응형
그리드형(광고전용)
'C# > WPF' 카테고리의 다른 글
[C#/WPF] ImageBrush 엘리먼트 : 배경 애니메이션 만들기 (0) | 2023.03.21 |
---|---|
[C#/WPF] ControlTemplate 엘리먼트 : 투명 회전 글래스 처리 RadioButton 엘리먼트 정의하기 (0) | 2023.03.21 |
[C#/WPF] ImageBrush 엘리먼트 사용하기 (0) | 2023.03.21 |
[C#/WPF] ImageBrush 엘리먼트 : TileMode 속성을 사용해 타일 모드 설정하기 (0) | 2023.03.21 |
[C#/WPF] ImageBrush 엘리먼트 : ViewportUnits/Viewport/TileMode 속성을 사용해 타일 크기 설정하기 (0) | 2023.03.21 |
[C#/WPF] ImageBrush 엘리먼트 : Stretch 속성 사용하기 (0) | 2023.03.21 |
[C#/WPF] ImageBrush 엘리먼트 사용하기 (0) | 2023.03.21 |
[C#/WPF] ImageBrush 엘리먼트 : AlignmentX/AlignmentY 속성을 사용해 이미지 정렬하기 (0) | 2023.03.21 |
[C#/WPF] GradientStop 클래스 : Color/Offset 속성 애니메이션 설정하기 (0) | 2023.03.20 |
[C#/WPF] SolidColorBrush 클래스 : Color/Opacity 속성 애니메이션 설정하기 (0) | 2023.03.18 |
댓글을 달아 주세요