2009. 11. 26. 14:58
.Net Project/SilverLight 3.0
반응형
- RectangleGeometry Rect 프로퍼티로 사각형의 위치, 높이, 너비를 설정하여, 모퉁이의 둥근 사각형을 표현 하기 위해 RadiusX, RadiusY 프로퍼티를 지원 가능 |
<UserControl x:Class="RiaGeometry.FrmRectangleGeometry" 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"> <Ellipse Width="300" Height="100" Fill="Yellow" Stroke="Red"> <Ellipse.Clip> <RectangleGeometry Rect="40,0 250,100"> </RectangleGeometry> </Ellipse.Clip> </Ellipse> </Grid> </UserControl> |
반응형
'.Net Project > SilverLight 3.0' 카테고리의 다른 글
16장) 실버라이트 경로 기하도형 (ArcSegment) (0) | 2009.11.26 |
---|---|
15장) 실버라이트 단순 기하 도형 (EllipaseGeometry) (0) | 2009.11.26 |
13장) 실버라이트 단순 기하 도형 (LineGemoetry) (0) | 2009.11.26 |
12장) 실버라이트 동영상 처리 (MediaElement) (0) | 2009.11.26 |
11장) 실버라이트 이미지 처리 (Images) (0) | 2009.11.26 |