• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

选择内容从DataGrid导出到.csv

用户头像
it1352
帮助1

问题说明

更具体的问题:导出数据库(.mdb / .accdb)到.csv

More specific asked question: Export DataBase (.mdb / .accdb) to .csv

我是Data Grid的新用户,需要导出已标记(选定)的特定行。

Im new to Data Grid and Need to Export specific lines that are marked (selected).

我找不到只导出所选字段的简单方法。

I cant find a easy way to Export only the selected fields.

现在没有选择的代码:

StringBuilder sb = new StringBuilder();
IEnumerable<string> columnNames = DataSet_DB.Tables[0].Columns.Cast<DataColumn>().
        
sb.AppendLine(string.Join(";", columnNames));

foreach (DataRow row in DataSet_DB.Tables[0].Columns)
{
    IEnumerable<string> fields = row.ItemArray.Select(field => field.ToString());
    sb.AppendLine(string.Join(";", fields));
}

File.WriteAllText(SFD.FileName, sb.ToString());

正确答案

#1

您可以使用DataGridView.SelectedRows获取选定的行采集。如果您的DataGridView只允许选择一个,请看一下我的示例。

You can get the selected row using the DataGridView.SelectedRows Collection. If your DataGridView allows only one selected, have a look at my sample.


DataGridView.SelectedRows获取由$ b选择的行的集合。 $ b用户。

DataGridView.SelectedRows Gets the collection of rows selected by the user.

示例

if (dataGridView1.SelectedRows.Count != 0)
{
    DataGridViewRow row = this.dataGridView1.SelectedRows[0];
    row.Cells["ColumnName"].Value
}

更多信息:

导出特定列

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcfhcjb
系列文章
更多 icon
同类精品
更多 icon
继续加载