Silverlight
26.SilverLight3 - Geometry : ArcSegment
Godffs
2009. 11. 26. 11:38
반응형
MainPage.xaml |
[그림 26-1] <Grid x:Name="LayoutRoot" Background="White"> <Path Stroke="Red" StrokeThickness="10"> <Path.Data> <PathGeometry> <PathFigure StartPoint="20,20"> <ArcSegment Size="15,30" Point="100,100"> </ArcSegment> </PathFigure> </PathGeometry> </Path.Data> </Path> </Grid> |
반응형