回复 1楼sunyuanze的帖子
你的问题没有重现。
如果grid绑定到DataTable的时候,可以通过使用sort属性来排序增强性能。
- private void Form1_Load(object sender, System.EventArgs e)
- {
- this.productsTableAdapter.Fill(this.nwindDataSet.Products);
- }
-
- private void btn_Sort_Click(object sender, EventArgs e)
- {
- // Sort the data by the UnitsInStock column then by the ProductID column.
- this.productsBindingSource.Sort = "UnitsInStock ASC, ProductID ASC";
- }
-
- private void btn_ClearSort_Click(object sender, EventArgs e)
- {
- // Clear the sort.
- this.productsBindingSource.Sort = "";
- }
复制代码
请参考文档的第7条,tip7.
http://helpcentral.componentone. ... dforwinformst2.html |