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#MongoDB使用Builders查找派生对象 2022-09-04
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 输入按键事件处理程序 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01