从 DataGridView 到 StringBuilder obj

发布于 2024-12-01 00:44:54 字数 568 浏览 1 评论 0原文

我有一个 DataGridView (dgv1),其中加载了一些数据。我想循环遍历 dgv1 并将特定列(0、1、3 和 4)中的数据附加到 StringBuilder 对象 (sb)。我设想它看起来像这样:

        // Add data to the StringBuilder
        int currentRow = 0;
        StringBuilder temp = new StringBuilder();
        foreach (DataGridViewRow row in dgv1.Rows)
        {
            foreach (DataGridViewColumn col in dgv1.Columns)
            {
                temp.Append(dataGridView2.Rows[currentRow].Cells[col].Value.ToString());
                currentRow++;
            }
        }

但是,我认为这不太正确。有人可以提供一些建议吗?

I have a DataGridView (dgv1) with some data loaded into it. I'd like to loop through dgv1 and append the data from specific columns (0,1,3 and 4) to a StringBuilder object (sb). I envisioned it would look something like this:

        // Add data to the StringBuilder
        int currentRow = 0;
        StringBuilder temp = new StringBuilder();
        foreach (DataGridViewRow row in dgv1.Rows)
        {
            foreach (DataGridViewColumn col in dgv1.Columns)
            {
                temp.Append(dataGridView2.Rows[currentRow].Cells[col].Value.ToString());
                currentRow++;
            }
        }

However, I don't think this is quite right. Can someone offer some advice?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

零時差 2024-12-08 00:44:54

老实说,不要认为这是不对的。

我能想到的一件事实际上是,如果您使用 DataBinding 绑定到 DataGrid,则迭代数据绑定值而不是 UI 控件内容。在这种情况下,您可能可以使用 LINQ,这将导致更清晰的代码......

问候。

Don't think it's not right, honestly.

One thing that I can think about is actually, if you use a DataBinding to bind to DataGrid, iterate over data binded values and not UI control content. In this case you potentially can use LINQ, which will lead to more clear code....

Regards.

画▽骨i 2024-12-08 00:44:54

你不需要这个:

dataGridView2.Rows[currentRow]

因为同一个对象已经在这里:

dgr

通过这种方式直接使用 dgr ,你可以简化摆脱 currentRow

you do not need this:

dataGridView2.Rows[currentRow]

because the same object is already here:

dgr

in this way using directly dgr as you should, you simplify getting rid of currentRow

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文