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

 ̄綄美尐妖づ 提交于 2019-12-02 05:16:51

问题


Hi I want to save and load data from a datagridview to a xml. My idea is that I can save my datagridview to a xml how this -> "[date]_[name].xml" and later I can load this data. For this two operations I want to use two methods --> Save() and Load()

Here is my code for saving:

private void Save(DataGridView grid) 
{
    try
    {
        xmlfile = @"C:\datagrid.xml";
        dataset = (DataSet)InputDataGrid.DataSource;
        dataset.WriteXml(xmlfile);
    }
    catch (Exception ex)
    {
        MessageBox.Show(ex.Message);
    }
}

How I can do this?


回答1:


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



来源:https://stackoverflow.com/questions/26040165/how-i-can-save-a-datagridview-in-a-xml-and-load-a-xml-to-datagridview

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