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}, ...
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
353 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
702 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
1answer
246 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
41 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
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
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
943 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
2answers
863 views

C# xmldataprovider insert node

I am trying to write an editor for an xml config file. I have the xml file bound to a listview and selecting an element and then clicking edit allows you to edit an element. When the user clicks save, ...
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
4k 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 comments at the very ...
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. ...