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

■ ImageBrush 엘리먼트의 AlignmentX/AlignmentY 속성을 사용해 이미지 브러시 내에서 이미지를 정렬하는 방법을 보여준다.

TestProject.zip
0.02MB

▶ 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="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">AlignmentX="Left"</TextBlock>
        <Rectangle Grid.Row="1" Grid.Column="0"
            Width="200"
            Height="150"
            StrokeThickness="1"
            Stroke="Maroon">
            <Rectangle.Fill>
                <ImageBrush
                    AlignmentX="Left"
                    Stretch="None"
                    ImageSource="IMAGE\butterfly2.jpg" />
            </Rectangle.Fill>
        </Rectangle>
        <TextBlock Grid.Row="0" Grid.Column="1">AlignmentX="Center"</TextBlock>
        <Rectangle Grid.Row="1" Grid.Column="1"
            Width="200"
            Height="150"
            StrokeThickness="1"
            Stroke="Maroon">
            <Rectangle.Fill>
                <ImageBrush
                    AlignmentX="Center"
                    Stretch="None"
                    ImageSource="IMAGE\butterfly2.jpg" />
            </Rectangle.Fill>
        </Rectangle>
        <TextBlock Grid.Row="0" Grid.Column="2">AlignmentX="Right"</TextBlock>
        <Rectangle Grid.Row="1" Grid.Column="2"
            Width="200"
            Height="150"
            StrokeThickness="1"
            Stroke="Maroon">
            <Rectangle.Fill>
                <ImageBrush
                    AlignmentX="Right"
                    Stretch="None"
                    ImageSource="IMAGE\butterfly2.jpg" />
            </Rectangle.Fill>
            </Rectangle>
        <TextBlock Grid.Row="2" Grid.Column="0">AlignmentY="Top"</TextBlock>
        <Rectangle Grid.Row="3" Grid.Column="0"
            Width="200"
            Height="150"
            StrokeThickness="1"
            Stroke="Maroon">
            <Rectangle.Fill>
                <ImageBrush
                    AlignmentY="Top"
                    Stretch="None"
                    ImageSource="IMAGE\butterfly2.jpg" />
            </Rectangle.Fill>
        </Rectangle>
        <TextBlock Grid.Row="2" Grid.Column="1">AlignmentY="Center"</TextBlock>
        <Rectangle Grid.Row="3" Grid.Column="1"
            Width="200"
            Height="150"
            StrokeThickness="1"
            Stroke="Maroon">
            <Rectangle.Fill>
                <ImageBrush
                    AlignmentY="Center"
                    Stretch="None"
                    ImageSource="IMAGE\butterfly2.jpg" />
            </Rectangle.Fill>
        </Rectangle>
        <TextBlock Grid.Row="2" Grid.Column="2">AlignmentY="Bottom"</TextBlock>
        <Rectangle Grid.Row="3" Grid.Column="2"
            Width="200"
            Height="150"
            StrokeThickness="1"
            Stroke="Maroon">
            <Rectangle.Fill>
                <ImageBrush
                    AlignmentY="Bottom"
                    Stretch="None"
                    ImageSource="IMAGE\butterfly2.jpg" />
            </Rectangle.Fill>
        </Rectangle>
    </Grid>
</Window>
728x90
반응형
그리드형(광고전용)
Posted by icodebroker

댓글을 달아 주세요