2 <Window Background="Cornsilk"
3 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
4 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
5 xmlns:c="clr-namespace:SDKSample"
6 x:Class="SDKSample.Window1"
7 Title="CompositeCollections"
8 SizeToContent="WidthAndHeight"
11 <c:GreekGods x:Key="GreekGodsData"/>
13 <XmlDataProvider x:Key="GreekHeroesData" XPath="GreekHeroes/Hero">
15 <GreekHeroes xmlns="">
17 <Hero Name="Hercules" />
18 <Hero Name="Bellerophon" />
19 <Hero Name="Theseus" />
20 <Hero Name="Odysseus" />
21 <Hero Name="Perseus" />
26 <DataTemplate DataType="{x:Type c:GreekGod}">
27 <TextBlock Text="{Binding Path=Name}" Foreground="Gold"/>
29 <DataTemplate DataType="Hero">
30 <TextBlock Text="{Binding XPath=@Name}" Foreground="Cyan"/>
35 <TextBlock FontSize="18" FontWeight="Bold" Margin="10"
36 HorizontalAlignment="Center">Composite Collections Sample</TextBlock>
37 <ListBox Name="myListBox" Height="300" Width="200" Background="White">
41 Collection="{Binding Source={StaticResource GreekGodsData}}" />
43 Collection="{Binding Source={StaticResource GreekHeroesData}}" />
44 <ListBoxItem Foreground="Red">Other Listbox Item 1</ListBoxItem>
45 <ListBoxItem Foreground="Red">Other Listbox Item 2</ListBoxItem>
46 </CompositeCollection>
47 </ListBox.ItemsSource>