Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个交叉表的datagridview。当用户单击其中一个列标题时,我想对 datagridview 进行排序,但我不希望对最终(总)行进行排序。有任何想法吗?
您可以通过将最后一行分配给临时网格线并.RemoveAt(lineID)在网格上执行 a 来临时将其从列表中取出,然后排序,最后将临时网格线重新附加到网格上。
.RemoveAt(lineID)
最终使用了 XCeed 的自定义 DataGridView。它在控件中内置了一个摘要行。看起来有点矫枉过正,但是,嘿,你会怎么做?