Silverlight/XAML – Learning by Coding

[ polygon.xaml --> Grafik anzeigen ]

1: <?xml version="1.0" encoding="UTF-8"?>
2: <!-- coded by Thomas Meinike 01/08 -->
3: <Canvas xmlns="http://schemas.microsoft.com/client/2007"
4:         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
5: 
6:   <Polygon Points="50,150 100,150 75,50" Stroke="#090"/>
7:   <Polygon Points="150,150 200,150 175,50" Fill="#FF0" Stroke="#00C"/>
8: 
9: </Canvas>

[zum Anfang]