<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="WPFDataBinding.BindingRss"
x:Name="BindingRss1"
Title="Window1"
>
<Canvas x:Name="LayoutRoot">
<StackPanel Height="243.687">
<StackPanel.Resources>
<XmlDataProvider x:Key="MyRSS"
Source="http://blog.csdn.net/johnsuna/category/325343.aspx/rss" />
</StackPanel.Resources>
<TextBlock x:Name="txtBlockTitle" Text="{Binding Source={StaticResource MyRSS},
XPath=//channel/title}" HorizontalAlignment="Center"
FontWeight="Bold"/>
<ListBox Width="500" Height="300"
ItemsSource="{Binding Source={StaticResource MyRSS}, XPath=//item/title}">
</ListBox>
</StackPanel>
</Canvas>
</Window>