Tagged Questions

0
votes
1answer
39 views

Load XmlDataProvider in code

Im puzzled I have xml document <?xml version="1.0" encoding="utf-8"?> <Reports> <Report Id="AAAAA-ABBB"> <DocId>10110001</DocId> <DocName>ESP North ...
0
votes
1answer
182 views

Creating WPF ComboBox Controls Dynamically

I need to create a DataGrid dynamically in WPF. The grid should be populate with the Rows and columns with dynamically generated controls (comboBox,TextBoxes). I need to populate the grid with Three ...
0
votes
3answers
434 views

How to select a databound TreeViewItem?

I have a XML databound to a TreeView with a XmlDataProvider. If i add a subnode to the XML the TreeView shows it, but how can i select this item? XAML: <Window.Resources> ...
0
votes
1answer
100 views

Binding to external XML doesn't work, but adding XML using XData makes it work

Here is the code for App.xaml: <!-- <XmlDataProvider x:Key="BookmarkData" Source="testData.xml" XPath="/Favourites"/>--> <XmlDataProvider x:Key="BookmarkData" XPath="/Favorites"> ...
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
2answers
3k views

How to load an xml string in the code behind to databound UI controls that bind to the XPath of the XML?

Every sample that I have seen uses static XML in the xmldataprovider source, which is then used to databind UI controls using XPath binding. Idea is to edit a dynamic XML (structure known to the ...