Silverlight/XAML – Learning by Coding

[ sl2_checkbox.xaml --> Grafik anzeigen ]

 1: <?xml version="1.0" encoding="UTF-8"?>
 2: <!-- coded by Thomas Meinike 08/08 -->
 3: <UserControl x:Class="sl2_checkbox.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:     <StackPanel Canvas.Left="30" Canvas.Top="30" HorizontalAlignment="Left">
11: 
12:       <CheckBox IsChecked="True"  Content="Checkbox 1" FontSize="12"/>
13:       <CheckBox IsChecked="False" Content="Checkbox 2" FontSize="12"/>
14:       <CheckBox IsChecked="False" Content="Checkbox 3" FontSize="12"/>
15:       <!-- wesentliche Event-HandlerClickCheckedUnchecked -->
16: 
17:     </StackPanel>
18: 
19:   </Canvas>
20: 
21: </UserControl>

[zum Anfang]