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

■ Image 엘리먼트의 OpacityMask 속성에서 ImageBrush 객체를 설정해 불투명 마스크를 사용하는 방법을 보여준다.

TestProject.zip
0.19MB

▶ 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">
    <Image
        Width="200"
        Height="150"
        Source="IMAGE/waterlilies.jpg">
        <Image.OpacityMask>
            <ImageBrush
                Viewport="0 0 50 50"
                ViewportUnits="Absolute"
                TileMode="Tile"
                ImageSource="IMAGE/tornedges.png" />
        </Image.OpacityMask>
    </Image>
</Window>
728x90
반응형
그리드형(광고전용)
Posted by icodebroker

댓글을 달아 주세요