如何使用BindingList中自动生成的列对DataGridView中的数据进行排序?

时间:2011-04-07 04:27:11

标签: c# winforms sorting datagridview

我有DataGridView收到BindingList

dataGrid.DataSource = new BindingList<Value>(ValueList);

之后我尝试设置SortMode

dataGrid.Columns.OfType<DataGridViewColumn>().ToList()
    .ForEach(c =>
    {
        c.SortMode = DataGridViewColumnSortMode.Automatic;
    });

断点确实停在它上面,但我的DataGridView不可排序......我尝试点击标题但没有任何反应。

这些列是自动生成的,我该怎么做才能对数据进行排序?

2 个答案:

答案 0 :(得分:0)

我认为问题在于您需要创建一个实现必要排序函数的自定义绑定列表,以便DataGridView知道如何对每列进行排序。

这篇文章提供了有关排序工作的好信息:

http://xiaonanstechblog.blogspot.com/2009/03/how-to-enable-column-sorting-on.html

如果要同时进行过滤和排序,可能需要对IBindingListView接口进行自定义实现:

http://msdn.microsoft.com/en-us/library/system.componentmodel.ibindinglistview.aspx

答案 1 :(得分:0)

DataGridView 绑定到 DataSource DataView,BindingSource,Table,DataSet +“tablename”)时,它会引用<强>数据视图即可。获取对此DataView的引用,并根据需要设置排序(和过滤器):

DataView dv = null;
CurrencyManager cm = (CurrencyManager)(dgv.BindingContext[dgv.DataSource, dgv.DataMember]);

if (cm.List is BindingSource)
{
    // In case of BindingSource it may be chain of BindingSources+relations
    BindingSource bs = (BindingSource)cm.List;
    while (bs.List is BindingSource)
    { bs = bs.List as BindingSource; }

    if (bs.List is DataView)
    { dv = bs.List as DataView; }
}
else if (cm.List is DataView)
{
    // dgv bind to the DataView, Table or DataSet+"tablename"
    dv = cm.List as DataView;
}

if (dv != null)
{
    dv.Sort = "somedate desc, firstname";
    // dv.Filter = "lastname = 'Smith' OR lastname = 'Doe'";

    //  You can Set the Glyphs something like this:
    int somedateColIdx = 5;    // somedate
    int firstnameColIdx = 3;   // firstname
    dgv.Columns[somedateColIdx].HeaderCell.SortGlyphDirection = SortOrder.Descending;
    dgv.Columns[firstnameColIdx].HeaderCell.SortGlyphDirection = SortOrder.Ascending;
}

注意:排序和过滤器中使用的列名对应于DataTable中的列名, DataGridView中的列名是用于在dgv中显示单元格的控件的名称。 您可以像这样在DataView中使用列名:

string colName = dgv.Columns[colIdx].DataPropertyName

取决于您希望如何跟踪排序列(colSequence,colName,asc / desc,dgvColIdx),您可以决定如何构建Sort和Filter表达式并在dgv中设置SortGlyph(为简单起见,我制作了硬编码)。