2009. 11. 26. 15:00
.Net Project/SilverLight 3.0
반응형
- EllipaseGeometry Center 프로퍼티로 중심점을 설정하고 RadiusX, RadiusY 프로퍼티를 통해 원의 X반지름, Y반지름 설정 |
<UserControl x:Class="RiaGeometry.FrmEllipseGeometry" 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"> <Rectangle Width="300" Height="300" Fill="Yellow" Stroke="Blue" StrokeThickness="3"> <Rectangle.Clip> <EllipseGeometry Center="80, 80" RadiusX="100" RadiusY="100"> </EllipseGeometry> </Rectangle.Clip> </Rectangle> </Grid> </UserControl> |
반응형
'.Net Project > SilverLight 3.0' 카테고리의 다른 글
17장) 실버라이트 경로 기하도형 (BezierSegment) (0) | 2009.11.26 |
---|---|
16장) 실버라이트 경로 기하도형 (ArcSegment) (0) | 2009.11.26 |
14장) 실버라이트 단순 기하 도형 (RectangleGeometry) (0) | 2009.11.26 |
13장) 실버라이트 단순 기하 도형 (LineGemoetry) (0) | 2009.11.26 |
12장) 실버라이트 동영상 처리 (MediaElement) (0) | 2009.11.26 |