Tagged Questions

1
vote
1answer
21 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 xmlns="http://schemas.microsoft.co …
0
votes
1answer
47 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" Tit …
1
vote
1answer
239 views

Combobox Dataprovider - Only gets labelField from XML not the associated ID.

Hello guys. Back again this time working with data providers. Well i been doing a bit of training with Flex, and I've searched, and i managed to get a ComboBox being populated th …
4
votes
4answers
2k 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={Stat …
1
vote
1answer
195 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 som …
0
votes
1answer
683 views

How to Bind an XmlDataProvider Class Property to a XAML TreeView

I would like to bind a TreeView control I have defined in XAML to a property in its code-behind class. I already read through a WPF Basic Data Binding FAQ, but the example in the c …
0
votes
0answers
125 views

Using relative URI as XmlDataProvider’s Source

Is it possible to use a relative URI when setting the Source property on an XmlDataProvider object in .NET? I get the following exception: IOException:System.IO.IOException: Canno …
-1
votes
0answers
429 views

WPF XmlDataProvider TreeView Error

I have a WPF TreeView control that is binding to an XMLDataProvider. The nodes are appearing fine within the Treeview control however the following error is appearing: System. …
0
votes
2answers
1k 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 (structu …
0
votes
0answers
275 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 d …