Silverlight

19.SilverLight3 - Shape - Path

Godffs 2009. 11. 25. 12:19
반응형
Path
- 코드 레벨이 아닌 다자인 레벨
- 그림을 하나의 xaml로 태그사용, 이미지를 쉽게 DB에 저장가능하고 쉽게 불어오는 기능이 가능
- 그림판, 방명록 기능에 사용

MainPage.xaml

[그림 19-1]


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

        <!-- : (10,10) Width 100, Height 100, -->

        <Path Fill="Yellow" Stroke="Red" StrokeThickness="5">

            <Path.Data>

                <RectangleGeometry Rect="10,10,100,100"

                    RadiusX="10" RadiusY="10"></RectangleGeometry>

            </Path.Data>

        </Path>

</Grid>



반응형