I have an XML file that looks like
<Items>
<Item>
<Name>Item 1</Name>
<FirstProperty>42</FirstProperty>
<SecondProperty>37</SecondProperty>
</Item>
<Item>
<Name>Item 2</Name>
<FirstProperty>11</FirstProperty>
<SecondProperty>35</SecondProperty>
</Item>
</Items>
and a XAML file that looks like
<Grid>
<Grid.Resources>
<XmlDataProvider x:Key="ItemsXml" XPath="Items/Item" Source="Items.xml"/>
</Grid.Resources>
<ListBox Name="itemList" HorizontalAlignment="Left"
ItemsSource="{Binding Source={StaticResource ItemsXml}, XPath=//Name}"/>
<TextBox HorizontalAlignment="Right" VerticalAlignment="Top" Margin="80,0" Width="30"/>
<TextBox HorizontalAlignment="Right" VerticalAlignment="Top" Margin="80,50" Width="30"/>
<Label HorizontalAlignment="Right" VerticalAlignment="Top"
Content="{Binding ElementName=areaList, Path=SelectedValue}"/>
<Label HorizontalAlignment="Right" VerticalAlignment="Top" Margin="0,50" Content="Bind me?"/>
</Grid>
This shows a ListBox containing two elements, Item 1 and Item 2, and two rows containing a TextBox and a Label each. Is it possible to bind the Label.Content properties to respectively FirstProperty and SecondProperty of the selected item in the ListBox? The above code binds one Label to the value of the selected item, which works correctly except that's not the value I want to display. I'd guess what I really need is to specify a source of itemList and find the matching value with XPath, but firstly I'm not sure how to do that comparison and secondly I'm curious to know if there's a better way, assuming there is one at all.
If this isn't possible the only solution I can think of is to do it programmatically in the SelectionChanged event handler. That would work but I'd rather not have to split up the behaviour like that.