2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4 xmlns:local="clr-namespace:SDKSample"
5 x:Class="SDKSample.App"
6 StartupUri="HomePage.xaml">
8 <Application.Resources>
10 <!-- Data Template for the Person Class -->
11 <DataTemplate DataType="{x:Type local:Person}">
12 <TextBlock xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
13 <TextBlock FontWeight="Bold">Name:</TextBlock>
14 <TextBlock Text="{Binding Path=Name}" />
16 <TextBlock FontWeight="Bold">Favorite Color:</TextBlock>
17 <TextBlock Text="{Binding Path=FavoriteColor}" FontWeight="Bold">
18 <TextBlock.Background>
19 <SolidColorBrush Color="{Binding Path=FavoriteColor}" />
20 </TextBlock.Background>
25 </Application.Resources>