c# – Datagridview.SelectedCells命令

前端之家收集整理的这篇文章主要介绍了c# – Datagridview.SelectedCells命令前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在开发一个包含大量DataGridViews的C#应用​​程序.用户必须使用excel中的复制/粘贴数据填充它们.我所做的是以下内容
int i = 0;
string s = Clipboard.GetText();

// Separate lines
string[] lines = Regex.Split(s,"\r\n");
foreach (string line in lines)
{
    // Separate each cell
    string[] cells = line.Split('\t');
    foreach (string cell in cells)
    {
        // If we selected as many cells as copied
        if (dataGridView.SelectedCells.Count == (lines.Length-1)*(cells.Length))
        {
            dataGridView.SelectedCells[i].Value = cell;
            i++;
        }
    }
}

问题是如果我复制这样的东西(在excel上):

1   2   3
4   5   6

我的datagridview看起来像:

6   4   2
5   3   1

我真的不知道如何解决这个问题……
提前致谢

解决方法

更换

dataGridView.SelectedCells [i] .Value = cell;

dataGridView.SelectedCells [(dataGridView.SelectedCells.Count-1) – i] .Value = cell;

原文链接:https://www.f2er.com/csharp/99430.html

猜你在找的C#相关文章