How I can save a DatagridView in a Xml and Load A Xml to datagridView?

强颜欢笑 提交于 2019-12-02 00:57:54
codeninja.sj

This is the sample xml file which I have used for testing your scenario:

<dataset>
  <student>
    <name>Tarasov</name>
  </student>
</dataset>

The sample code snippet which could access the above mentioned XML file:

private void Load()
{
    string path = @"C:\dataset.xml";
    DataSet ds = new DataSet();
    ds.ReadXml(path);
    InputDataGrid.DataSource = ds;
    InputDataGrid.DataMember = "student";
}

private void Save()
{
    string path = @"C:\dataset.xml";
    DataSet ds = (DataSet) InputDataGrid.DataSource;
    ds.WriteXml(path);
}

--SJ

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!