Tagged Questions
3
votes
1answer
76 views
Binding against the XmlDataProvider fails?
I have some Problems with Binding of a XmlDataProvider to the WPF TreeView.
The TreeView is XAML-Defined like this:
<TreeView ItemsSource="{Binding Path=SelectedSystemVersionHistory}"/>
and ...
1
vote
1answer
258 views
set XmlDataProvider source without saving file
in my browser wpf application i use databinding to xml that comes from my database.
to bind it the better way i use the XmlDataProvider.
in the beginning i declare
<Grid.DataContext>
...
0
votes
1answer
1k views
Binding to XMLDataProvider in Code Behind
i have a problem moving a XMLDataprovider Binding with XPath from Xaml to code behind.
Labels.xml
<?xml version="1.0" encoding="utf-8" ?>
<Labels>
<btnOne Label="Button1"/>
...
0
votes
1answer
637 views
XmlDataProvider and XPath bindings don't allow default namespace of XML data?
I am struggling to work out how to use default namespaces with XmlDataProvider and XPath bindings.
There's an ugly answer using local-name <Binding XPath="*[local-name()='Name']" /> but that is ...
0
votes
1answer
1k views
How to bind XmlDataProvider.Source to MVVM property
I've got a treeview bound to an XmlDataProvider following this example. The app I am working on is following the MVVM pattern and the Xml is from a file that the user will open.
When I try to bind ...
0
votes
1answer
482 views
Detecting changes to the source data using the XmlDataProvider and a bound TextBox
I have a TreeView bound to an XmlDataProvider. The name of a node is reflected in the tree and the data of the node is in a TextBox. When you click on a tree item, it loads the data in the TextBox.
...