というわけで、早速サンプル。
<Grid> <Grid.Resources> <XmlDataProvider x:Key="SampleData" XPath="route/region"> <XmlDataProvider.Source>[Uri]</XmlDataProvider.Source> </XmlDataProvider> </Grid.Resources> <ListBox> <ListBox.ItemsSource> <Binding Source="{StaticResource SampleData}" /> </ListBox.ItemsSource> <ListBox.ItemTemplate> <DataTemplate> <TextBlock FontSize="12" Foreground="Red"> <TextBlock.Text> <Binding XPath="name"/> </TextBlock.Text> </TextBlock> </DataTemplate> </ListBox.ItemTemplate> </ListBox> </Grid>XmlDataProvider.SourceにはUriを設定できるようです。
今度はこれをMVVMモデルで使うのか。
たぶん、XmlDataProviderオブジェクトを作って、それをItemsSourceにバインドするのかな。
やったことないからわかんないけど……。