1
votes
votes
1 answers
Datagrid Items to XML
Hi I have the following which reads the XMLNode attributes into a datagridview.. [code] XmlNodeList xnodes = xdoc.SelectNodes("//MyNode[@id and @name]"); foreach (XmlNode node in xnodes) { //datagrid has: col checkbox ...
