本文介绍了[帮助]排序Datagridview列VB.NET的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个名为'quantity'的列,我使用这些代码对该列进行排序。
I have this column named 'quantity' and I use these codes to sort that column.
dgFast.Sort(dgFast.Columns(1), System.ComponentModel.ListSortDirection.Descending)
dgSlow.Sort(dgSlow.Columns(1), System.ComponentModel.ListSortDirection.Ascending)
它排序但是大约3行来自顶部和其余的自己排序。
9
8
7
25
15
14
It sorts but about 3 rows from the top and the remaining sort by themselves.
9
8
7
25
15
14
推荐答案
这篇关于[帮助]排序Datagridview列VB.NET的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!