从 DataGrid 1.0 检索行顺序
我正在使用 .net 1.1 的遗留应用程序,我需要检索数据网格后排序中的行(通过单击列标题)。 这听起来像是一项简单的任务,然而,答案似乎让我困惑。 我可以很好地从数据集中检索行,但是单击标题时它们不会再次排序。
I am working a legacy app which is .net 1.1 and I need to retrieve the rows in a datagrid post sort (by clicking on column header). This sounded like an easy task however, the answer seems to elude me. I can retrieve the rows from the dataset just fine but, they are not sorted again when the header is clicked.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现答案是创建一个 DataView,例如
希望这可以帮助以后的其他人......
I found the answer was to create a DataView such as
Hope this might help someone else later on...