如何:对 DataGridView 控件中的数据进行排序

更新:2007 年 11 月

DataGridView 控件提供了自动排序功能,使用户可以手动对该控件中的任意列进行排序。可以通过设置 DataGridViewColumnSortMode 属性来控制是否可对列进行排序。也可以以编程方式对列进行排序。

对 DataGridView 控件中的数据进行排序

  1. 如何:使用 DataGridView 控件显示数据中的说明,使用 Northwind 数据库中的 Customers 表添加 DataGridView 控件。

  2. 单击“Columns”属性旁边的省略号 (…) 按钮。

    “编辑列”对话框随即打开。

  3. 在“编辑列”对话框中,选择第一列,然后在“绑定列属性”窗口中,将“SortMode”属性设置为“Programmatic”。

  4. 选择第二列,并将其“SortMode”属性设置为“NotSortable”。

  5. 选择第三列,并将其“SortMode”属性设置为“Automatic”。

  6. 单击“确定”关闭对话框。

  7. Button 控件从“工具箱”中拖到 DataGridView 控件下方。

  8. 双击该按钮以便在代码视图中添加默认的事件处理程序,并添加下面的代码。

    this.customersDataGridView.Sort(this.dataGridViewTextBoxColumn1, ListSortDirection.Descending);
    

    此代码将按降序对 DataGridView 控件中的第一列进行排序。

  9. 按 F5 运行代码。

  10. DataGridView 控件显示数据时,单击第三列,并验证其数据是否已排序。

  11. 单击第二列,并验证其数据是否未排序。

  12. 单击该按钮,并验证第一列中的数据是否按降序进行排序。

请参见

任务

如何:使用 DataGridView 控件显示数据

如何:隐藏 DataGridView 控件中的列

其他资源

访问和显示数据

对 Windows 窗体 DataGridView 控件中的数据排序