I am binding an XML file to a DataGridView. I don't want the columns to be auto-generated, in fact I want to generate them myself. Is there a way of turning off the auto generating columns feature and be able to programmatically create the columns myself?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted
Datagridview1.AutoGenerateColumns=false
link|improve this answer
how do i then assign my xml data to new columns i create? – Goober Jul 13 '09 at 14:35
DataGridViewColumn.DataPropertyName (msdn.microsoft.com/en-us/library/…) – lc. Jul 13 '09 at 14:38
feedback

As @ozczecho metioned do Datagridview1.AutoGenerateColumns=false;

For binding the xml to a DataGridView do:

myDataSet = new DataSet();
myDataSet.ReadXml("dataSetFriendly.xml");
myDataGridView.DataSource = myDataSet;
myDataGridView.DataMember = "dataSetFriendly";

In the designer create various columns and set the DataPropertyName to the attribute/property name(s) from the Class that was used to generate the XML.

Please read DataSet.ReadXml Method (String) for more information about loading xml into a dataset.

Other way of binding xml to Datagridview is deserializing the xml to a List<MyClass> and use it as BindingSource.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.