Tagged Questions

11
votes
4answers
17k views

How do I create a new row in WPF DataGrid when it is bound to an XmlDataProvider?

I have a project with an XmlDataProvider bound to a WPF DataGrid control. I have the bindings on the DataGrid set up as follows: <dg:DataGrid ItemsSource="{Binding Source={StaticResource XmlData}, ...
4
votes
1answer
1k views

Are WPF binding properties Path and XPath mutually exclusive?

Suppose I have a UserControl whose DataContext is set to an object that has an XmlDataProvider property. I would like to bind to this property in my control's XAML, and specify some XPath. I tried ...
3
votes
1answer
69 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 ...
2
votes
3answers
249 views

XmlDataProvider has inline XML that does not explicitly set its XmlNamespace

I've been playing around with XmlDataProvider with inline XML. Here's my code: <XmlDataProvider x:Key="InternalData" XPath="/Workspace"> <x:XData> <Workspace xmlns="" ...
2
votes
1answer
2k views

how to change xmldataprovider source in wpf at runtime?

I made an application which draws a tree of organization based on values from an xml file. The xaml file goes like this : <Window.Resources> <!-- The Org Chart Data--> ...
1
vote
1answer
158 views

Adding Event Handlers to WPF DataGrid throws NullReferenceException

I'm not sure what's wrong with the DataGrid I've written. The contents show up correctly but when I try to add in a OnSelectionChanged event handler, sth odd happens.Please help me! Firstly, no ...
1
vote
1answer
355 views

How to select WPF TreeViewItem which has been populated using XmlDataProvider?

I have a WPF TreeView which has been populated from an XML file at runtime. I click on a button and a FileDialog box appears and then I select an XML file. Then the XML file is loaded in the TreeView. ...
1
vote
1answer
54 views

Using a SVN repo file as a source for an XML data provider

As title really, how/is it possible to set the Source property of an XmlDataProvider to use a file held on our SVN repository? I've tried this: <XmlDataProvider x:Key="xmlDPPlatforms" ...
1
vote
2answers
123 views

Listbox content not being populated with content from xml when using XmlDataProvider

I have a very simple application resource specified as <Application.Resources> <XmlDataProvider x:Key="MoreColors" XPath="/colors"> <x:XData> ...
1
vote
1answer
705 views

WPF, read data from XmlDataProvider in C#

I want a TreeView with checkboxes and I'm trying to follow this tutorial. However, in it, he creates all his content for the TreeView at runtime. I have an XML file that I have accessible as an ...
1
vote
2answers
1k views

HierarchicalDataTemplate and HeaderedItemsControl with ControlTemplate fails to show nested data

I can get this pattern to work with Menu and TreeView but I must be missing something when I make an attempt with HeaderedItemsControl: <Page ...
0
votes
1answer
42 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
37 views

SelectedItem of Listview is lost when refreshing XML DataProvider

I have a Listview which is bound to a XML file. The values of the different nodes of the XML files can be changed using Textboxes. If I change the value of an element which is directly bound to the ...
0
votes
0answers
50 views

Show or hide specific TreeView nodes

I have the following xml. <navigation> <MenuItems> <MenuItem> <ID>parent_id</ID> <title>parent_title</title> <name>parent_name</name> ...
0
votes
1answer
34 views

Two connected comboboxes + XML + DataBinding

I have a problem similar to this and this. Here is a description: I have a following XML: <Parts> <Part id="1" name="part1"> <SubParts> <SubPart id="1" ...
0
votes
1answer
71 views

Numerical string sorting in a listbox

I have a ListBox which ItemSource is bound to a CollectionViewSource. The CVS Source is an XmlDataProvider. So the ListBox lists all nodes (name attribute) i specified. Now those nodes have ...
0
votes
0answers
101 views

Binding TreeView to XML DataSource

I'm struggling with the WPF TreeView and an XmlDataProvider. The format of my XML datasource is like this: <OrcChart> <Unit Id="1" ParentId="0" Name="Unit1" /> <Unit Id="2" ...
0
votes
1answer
61 views

Binding ListBox to XmlDataProvider

Can anyone tell why this isn't working. It is really simple but the ListBox is empty when starting it. The code behind contains only InitializeComponent() nothing else. Hopefully someone has an idea ...
0
votes
1answer
109 views

Group DataGrid with XmlDataProvider source

I have a XmlDataProvider, a ListBox and a DataGrid. The underlying xml file has this kind of structure: <Root> <Person name="test"> <item name="bla" value="test"/> ...
0
votes
1answer
183 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
1answer
35 views

How can I make xmldataprovider process escaped characters?

I have built a very simple XAML RSS reader in WPF, using the XMLDataProvider to get the RSS data. That XAML looks like this: <XmlDataProvider x:Key="rssData" XPath="//item" ...
0
votes
1answer
88 views

Programmatic binding of listbox not working in WPF

I have a user control that sets programmatically a listbox's data source (an XmlDataProvider and a DataTemplate to be exact) but during runtime it never properly shows up. When the user control is ...
0
votes
3answers
438 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
410 views

Binding XmlDataProvider Source attribute to a static function in another form?

I am trying to bind an XmlDataProvider with a Source attribute to a static function in another form. Here's XmlDataProvider line - <XmlDataProvider x:Key="Lang" Source="/lang/english.xml" ...
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

WPF ListView loaded via binding with XmlDataProvider and I want to resize columns after the items are created

Here is my XAML: <Window x:Class="Application.SeeProductVersions" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
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
1k views

XmlDataProvider Refresh source WPF

I have a WPF Grid <Window x:Class="LabsRSS.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Poperecinii ...
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. ...
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 ...