How do I create a new row in WPF DataGrid when it is bound to an XmlDataProvider? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T23:13:03Zhttp://stackoverflow.com/feeds/question/480098http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/480098/how-do-i-create-a-new-row-in-wpf-datagrid-when-it-is-bound-to-an-xmldataprovider4How do I create a new row in WPF DataGrid when it is bound to an XmlDataProvider?bluepolystyreneman2009-01-26T15:13:31Z2009-07-06T16:32:56Z
<p>I have a project with an XmlDataProvider bound to a WPF DataGrid control. I have the bindings on the DataGrid set up as follows:</p>
<pre><code><dg:DataGrid ItemsSource="{Binding Source={StaticResource XmlData}, XPath=Root/People/Person}"
AutoGenerateColumns="False">
<dg:DataGrid.Columns>
<dg:DataGridTextColumn Header="ID" Binding="{Binding XPath=ID}"/>
<dg:DataGridTextColumn Header="Name" Binding="{Binding XPath=Name}"/>
</dg:DataGrid.Columns>
</dg:DataGrid>
</code></pre>
<p>Users can edit entries using the DataGrid without any problems. What I cannot manage to accomplish is allowing the user to add a new row (i.e. a new Person) using the DataGrid. How can I allow this?</p>
http://stackoverflow.com/questions/480098/how-do-i-create-a-new-row-in-wpf-datagrid-when-it-is-bound-to-an-xmldataprovider/499748#4997480Answer by unknown (google) for How do I create a new row in WPF DataGrid when it is bound to an XmlDataProvider?unknown (google)2009-01-31T22:57:17Z2009-01-31T22:57:17Z<p>Have you tried setting CanUserAddRows="True" on the DataGrid?</p>
http://stackoverflow.com/questions/480098/how-do-i-create-a-new-row-in-wpf-datagrid-when-it-is-bound-to-an-xmldataprovider/1044904#10449040Answer by Brett Bim for How do I create a new row in WPF DataGrid when it is bound to an XmlDataProvider?Brett Bim2009-06-25T16:32:15Z2009-06-25T16:32:15Z<p>Is the problem that the user can't add rows or is it that when the user does add a row, it's not saved to the backing XML store? I can easily add a datagrid with CanUserAddRows="True" to a WPF application, bind the grid to an in-memory list and then have the user add rows that are reflected in that in-memory list. That makes me think that your problem is saving to the backing store.</p>
<p>When I bind to an XML on the file system, I can no longer add records to the data grid. I think you will need a minor workaround in that you read the file into an in-memory collection, bind to that and then update the file accordingly as users add rows. </p>
http://stackoverflow.com/questions/480098/how-do-i-create-a-new-row-in-wpf-datagrid-when-it-is-bound-to-an-xmldataprovider/1083255#10832550Answer by Boris Lipschitz for How do I create a new row in WPF DataGrid when it is bound to an XmlDataProvider?Boris Lipschitz2009-07-05T00:37:05Z2009-07-05T00:37:05Z<p>Make sure that you set CanUserAddRows="True" and the default constractor of a bound class is available.</p>
http://stackoverflow.com/questions/480098/how-do-i-create-a-new-row-in-wpf-datagrid-when-it-is-bound-to-an-xmldataprovider/1087946#10879461Answer by Timothy Lee Russell for How do I create a new row in WPF DataGrid when it is bound to an XmlDataProvider?Timothy Lee Russell2009-07-06T16:32:56Z2009-07-06T16:32:56Z<p>To add a row to a WPF DataGrid that is bound to an XmlDataSource, you need to directly modify the backing data store. You can use the DataGrid to collect the new row information from the user and then in the <strong>RowEditEnding</strong> event, you can add the row's information to your backing store and prevent the DataGrid from actually trying to commit the edit using its internal logic. Since the DataGrid is bound to the XmlDataSource, it will display the changes you made to the backing store.</p>
<p>Here is the general idea:</p>
<pre><code>private void MyDataGrid_RowEditEnding(object sender, DataGridRowEditEndingEventArgs e)
{
if (e.EditAction == DataGridEditAction.Cancel)
{
e.Cancel = false;
return;
}
if (e.EditAction == DataGridEditAction.Commit)
{
DataGridRow dgr = e.Row;
XmlElement xe = myXmlDataProvider.Document.CreateElement("NewRowElement");
foreach(DataGridCell cell in dgr.Cells)
{
xe.SetAttribute(cell.Name, cell.Value);
}
dataProvider.Document.DocumentElement.AppendChild(xe);
e.Cancel = true;
}
}
</code></pre>