This example shows how to bind to XML data using an XmlDataProvider.
With an XmlDataProvider, the underlying data that can be accessed through data binding in your application can be any tree of XML nodes. In other words, an XmlDataProvider provides a convenient way to use any tree of XML nodes as a binding source.
Example
In the following example, the data is embedded directly as an XML data island within the Resources section. An XML data island must be wrapped in
Note
The root node of the XML data has an xmlns attribute that sets the XML namespace to an empty string. This is a requirement for applying XPath queries to a data island that is inline within the XAML page. In this inline case, the XAML, and thus the data island, inherits the System.Windows namespace. Because of this, you need to set the namespace blank to keep XPath queries from being qualified by the System.Windows namespace, which would misdirect the queries.
XAML
As shown in this example, to create the same binding declaration in attribute syntax you must escape the special characters properly. For more information, see XML Character Entities and XAML.
The ListBox will show the following items when this example is run. These are the Titles of all of the elements under Books with either a Stock value of “out” or a Number value of 3 or greater than or equals to 8. Notice that no CD items are returned because the XPath value set on the XmlDataProvider indicates that only the Books elements should be exposed (essentially setting a filter).
In this example, the book titles are displayed because the XPath of the TextBlock binding in the DataTemplate is set to “Title”. If you want to display the value of an attribute, such as the ISBN, you would set that XPath value to “@ISBN”.
The XPath properties in WPF are handled by the XmlNode.SelectNodes method. You can modify the XPath queries to get different results. Here are some examples for the XPath query on the bound ListBox from the previous example:
-
XPath=”Book[1]” will return the first book element (“XML in Action”). Note that XPath indexes are based on 1, not 0.
-
XPath=”Book[@*]” will return all book elements with any attributes.
-
XPath=”Book[last()-1]” will return the second to last book element (“Introducing Microsoft .NET”).
-
XPath=”*[position()>3]” will return all of the book elements except for the first 3.
When you run an XPath query, it returns an XmlNode or a list of XmlNodes. XmlNode is a common language runtime (CLR) object, which means you can use the Path property to bind to the common language runtime (CLR) properties. Consider the previous example again. If the rest of the example stays the same and you change the TextBlock binding to the following, you will see the names of the returned XmlNodes in the ListBox. In this case, the name of all the returned nodes is “Book”.
XAML
XAML
XML
See Also
Bind to XDocument, XElement, or LINQ for XML Query Results
Use the Master-Detail Pattern with Hierarchical XML Data