Silverlight/XAML – Learning by Coding

[ path.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:   <Path Data="M100,100 L150,200 V100 H300 V110" Stroke="#00C" StrokeThickness="2"/>
7: 
8: </Canvas>

[zum Anfang]