connecting xml file to the xtratreelist control
how to connect the xml data file to the xtraTreeList contro开发者_如何学JAVAl by using C#.net?
The XtraTreeList can load data only from xml, which was created using the treeList's ExportToXml method. In this case, the TreeList's TreeList.ImportFromXml method will load data from an xml file. To learn about this alternative, please refer to the Export and Import Data topic.
An alternative to this task is to bind the XtraTreeList to a DataSet, which is filled using the DataSet's ReadXml method.
精彩评论