블로그 이미지
Magic_kit
study 관련자료를 한곳으로 자기 개발 목적으로 재태크 재무 관리 목적으로 일상생활의 팁을 공유 하기 위하여 블로그를 개설 하였습니다.

calendar

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
반응형

Category

Recent Post

Recent Comment

Archive

2009. 11. 27. 10:21 .Net Project/SilverLight 3.0
반응형
  ImageBrush
 - 이미지 파일을 브러시 소스로 사용하여 도형 채우기나 윤곽선으로 사용 가능
 - 실버라이트에서는 이미지 브러시를 위해 ImageBrush 클래스를 제공
 - ImageBrush의 ImageSource 프로퍼티에 로드할 JPEG, PNG 이미지 파일의 경로 설정하여 영역 채움

 
 ImageBrush.Xaml

<UserControl x:Class="RiaSolidColorBrush.FrmImageBrush"

    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"

    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"

    mc:Ignorable="d"

    d:DesignHeight="300" d:DesignWidth="400">

   

    <Grid x:Name="LayoutRoot" Background="White">

        <Canvas Width="200" Height="200">

            <Ellipse Canvas.Left="20" Canvas.Top="20"
                   
 Width="150" Height="150" StrokeThickness="10" >

                <Ellipse.Fill>

                    <ImageBrush
                     ImageSource="images/피파.png"></ImageBrush>                 

                </Ellipse.Fill>               

            </Ellipse>

           

        </Canvas>

    </Grid>

</UserControl>  




반응형
posted by Magic_kit