以当前显示的顺序获取选定的DataGridViewRows

时间:2010-12-06 22:19:36

标签: c# winforms datagridview

我有DataGridView的未绑定数据,其中包含三个不同的DataColumns。行可以按每列进行排序,但除此之外不允许对显示的数据进行操作。

当我查询SelectedRows属性时,行按照我最初插入的顺序排序,而不是像我在当前显示或选择的顺序中所期望的那样。有没有办法改变这种行为?

6 个答案:

答案 0 :(得分:6)

SelectedRows属性包含选定的行,但顺序相反,最新的项目位于列表的开头。要获得正确的用户选择订单,请执行以下代码:

List<DataGridViewRow> dgList = new List<DataGridViewRow>();
foreach (DataGridViewRow r in dgv.SelectedRows)
{
    dgList.Insert(0, r);
}
foreach(DataGridViewRow r in dgList)
{
   //Print/consume your row here.
   int selectedIndex = r.Index;
}

注意:无需排序。

答案 1 :(得分:5)

我有同样的问题。 看起来最短的方式:

List<DataGridViewRow> rows = 
    (from DataGridViewRow row in dgv.SelectedRows 
    where !row.IsNewRow 
    orderby row.Index 
    select row).ToList<DataGridViewRow>();

答案 2 :(得分:2)

我认为没有一种方法可以做到这一点。您需要将排序重做到您自己的列表中,然后将IndexOf与SelectedItems一起使用以找出视觉位置。

List<DataGridViewRow> l = new List<DataGridViewRow>();
foreach (DataGridViewRow r in dgv.Rows)
{
    l.Add(r);
}

l.Sort((x, y) =>
    {
        IComparable yComparable = (IComparable)x.Cells[dgv.SortedColumn.Index].Value;
        IComparable yc = (IComparable)x.Cells[dgv.SortedColumn.Index].Value;

        if (dgv.SortOrder == SortOrder.Ascending)
            return yc.CompareTo(yComparable);
        else
            return yComparable.CompareTo(yc);
    }
    );

foreach(DataGridViewRow r in dgv.SelectedRows)
{
    int selectedIndex = l.IndexOf(r);
}

注意上面的内容尚未经过编译测试,可能需要进行一些调整。

答案 3 :(得分:0)

您应该可以像这样引用所选单元格中的值:

Private Sub determinePKVals(ByRef PKVal As String, ByRef PKVal2 As String, Optional ByVal row As Integer = -1)
    If row = -1 Then        ' optional value not passed
        row = dgvDisplaySet.CurrentRow.Index
    End If

    PKVal = dgvDisplaySet.Rows(row).Cells(0).Value
    PKVal2 = dgvDisplaySet.Rows(row).Cells(1).Value
End Sub

答案 4 :(得分:0)

这是上述代码的vb.net版本。

<强> C#

List<DataGridViewRow> rows = 
    (from DataGridViewRow row in dgv.SelectedRows 
    where !row.IsNewRow 
    orderby row.Index 
    select row).ToList<DataGridViewRow>();

<强> VB.NET

Dim rows As List(Of DataGridViewRow) = (From row As DataGridViewRow 
   In dgv.SelectedRows Where Not row.IsNewRow Order By row.Index).ToList()

C#到VB.NET转换器无法正确转换。

希望这有助于任何希望使用它的VB.NET编码器。

保罗

答案 5 :(得分:0)

SelectedCells似乎处于点击顺序或至少反向。这个工作尽可能简单:

foreach (DataGridViewRow row in dataGridLog.Rows)
{
    foreach (DataGridViewCell cell in row.Cells)
    {
        if (cell.Selected)
            sb.AppendLine($"{cell.Value.ToString()}");
    }
}