Silverlight/XAML – Learning by Coding

[ sl2_scrollviewer.xaml --> Grafik anzeigen ]

 1: <?xml version="1.0" encoding="UTF-8"?>
 2: <!-- coded by Thomas Meinike 08/08 -->
 3: <UserControl x:Class="sl2_scrollviewer.Page"
 4:   xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
 5:   xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
 6:   Width="800" Height="600">
 7: 
 8:   <Canvas>
 9: 
10:     <ScrollViewer Canvas.Left="30" Canvas.Top="30" Width="300" Height="80" Background="#EEE">
11: 
12:       <TextBlock TextWrapping="Wrap" FontFamily="Lucida" FontSize="16" Foreground="#00C"
13:         Text="Dieser Text befindet sich in einem TextBlock-Element, welches sich 
14:         wiederum innerhalb eines ScrollViewer-Elements befindetMit dieser Technik 
15:         lassen sich neue Einsatzgebiete erschließen."/>
16: 
17:     </ScrollViewer>
18: 
19:   </Canvas>
20: 
21: </UserControl>

[zum Anfang]