c# – DataGridViewColumn初始排序方向

前端之家收集整理的这篇文章主要介绍了c# – DataGridViewColumn初始排序方向前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在VS2008上使用C#WinForms应用程序.默认情况下,当单击DataGridView中的列标题时,它会对该列Ascending进行排序,然后您可以再次单击列标题将其排序为Descending.

我试图扭转这一点,所以初始点击排序降序然后第二次点击排序升序,我无法弄清楚如何做到这一点.有人知道吗?

谢谢

解决方法

您可以将HeaderCell SortGlyphDirection设置为Ascending,然后下一次单击将为您提供降序.默认值为none.
dataGridView1.Sort(Column1,ListSortDirection.Ascending);
this.Column1.HeaderCell.SortGlyphDirection = System.Windows.Forms.SortOrder.Ascending;
原文链接:https://www.f2er.com/csharp/98707.html

猜你在找的C#相关文章