반응형
시작 지점과 끝 점이 연결 안한 예제입니다.
MainPage.xaml |
[그림 17-1] <Canvas> <Canvas> <!--세개의 점으로 이루어짐--> <Polyline Canvas.Left="50" Canvas.Top="50" Points="0,0 50,0 50,50" Stroke="Red" StrokeThickness="10"></Polyline> <!--Polyline에 Fill 값 설정--> <Polyline Canvas.Left="120" Canvas.Top="50" Points="0,0 00,50 50,50" Fill="Yellow" Stroke="Red" StrokeThickness="10"></Polyline> </Canvas> </Canvas> |
반응형
'Silverlight' 카테고리의 다른 글
19.SilverLight3 - Shape - Path (0) | 2009.11.25 |
---|---|
18.SilverLight3 - Shape - Polygon ( 닫혀있는 모양 ) (0) | 2009.11.25 |
16.SilverLight3 - Shape - Line ( 선 ) (0) | 2009.11.25 |
15.SilverLight3 - Shape - Ellipse ( 타원 ) (0) | 2009.11.25 |
14.SilverLight3 - Shape - Rectangle ( 사각형 ) (0) | 2009.11.25 |
Comments