单击列标题时 Datagridview 列排序
我有一个 datagridview
,其中包含两列 name
和 price
。
如果我单击列标题,相应的列将按字母顺序排序。我是否需要添加任何事件处理程序来对数据网格视图列进行排序?或者是否有任何属性可以设置用于对数据网格视图列进行排序?我正在使用 C# 开发 Windows 应用程序。
有人愿意帮忙吗?
I have a datagridview
with two columns name
and price
.
If I click on the column header, the corresponding column will be sorted in alphabetical order. Do I need to add any event handler for sorting the datagrid view column? Or is there any property to set for sorting datagrid view column? I am working on a Windows application using C#.
Would anyone please help on this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您可以使用 javascrip/jQuery,我建议您使用 JQuery 插件 Datatabe。
这样您就可以同时进行列排序、列重新排序、过滤和搜索。
编辑:
如果不是javascript,那么您可以使用以下指南: DataGrid 排序
If you could use javascrip/jQuery I would suggest you to use the JQuery plugin Datatabe.
With that you can get the colum sorting, colum reordering, filtering and search all together.
EDIT:
If not javascript, then you can use the following guide: DataGrid sort