How I can save a DatagridView in a Xml and Load A Xml to datagridView?(如何将 DatagridView 保存在 Xml 中并将 Xml 加载到 datagridView?)
问题描述
您好,我想将数据从 datagridview 保存并加载到 xml.我的想法是,我可以将我的 datagridview 保存到一个 xml 中,如何 this -> "[date]_[name].xml" 稍后我可以加载这些数据.对于这两个操作,我想使用两种方法 --> Save() 和 Load()
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()
这是我的保存代码:
private void Save(DataGridView grid)
{
try
{
xmlfile = @"C:datagrid.xml";
dataset = (DataSet)InputDataGrid.DataSource;
dataset.WriteXml(xmlfile);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
我该怎么做?
推荐答案
这是我用来测试你的场景的示例 xml 文件:
This is the sample xml file which I have used for testing your scenario:
<dataset>
<student>
<name>Tarasov</name>
</student>
</dataset>
可以访问上述 XML 文件的示例代码片段:
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
这篇关于如何将 DatagridView 保存在 Xml 中并将 Xml 加载到 datagridView?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将 DatagridView 保存在 Xml 中并将 Xml 加载到 datagridView?
基础教程推荐
- c# Math.Sqrt 实现 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01