我有一个绑定到DataTable的DataGridView,有没有办法重新排序DataGridView中的行并让更改反映在绑定的DataTable中?
答案 0 :(得分:1)
在DataView
和BindingSource
之间使用DataTable
或DataGridView
,它们都有Sort
属性:
DataView view = new DataView(table);
view.Sort = "Name ASC, Age Desc";
dataGridView.DataSource = view;
您还可以使用DataView.RowFilter
属性(或BindingSource.Filter
)过滤结果。
DataGridView
会自动反映更改