Silverlight/XAML – Learning by Coding

[ text_block.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:   <TextBlock Text="Hallo Silverlight!" Canvas.Left="30" Canvas.Top="30"
7:              FontFamily="Arial" FontSize="36" Foreground="#00C"/>
8: 
9: </Canvas>

[zum Anfang]