Tagged Questions
1
vote
1answer
159 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
357 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
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
44 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
62 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
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
622 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
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
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 ...