What is the syntax for using XPath with binding in XAML? Are there any MSDN pages that describe where to put curly braces?
Visual Studio doesn't like the following:
<TextBlock Text="{Binding XPath=/One/Two[@id='0']/Three/@Four}" />
I want Textfrom to TextBlockbe set to an attribute value Four.
source
share