如何获取GridView选中的Column索引
我正在尝试从 wpf 程序获取 Gridview 选定的列索引。我可以获得选定的行索引,但不能获取选定的列索引
i am trying to get the Gridview selected column index from wpf program. i can get the selected row index but not the selected colum index
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您可以将
GridView
控件更改为DataGrid
,您可以尝试下面给出的代码来获取DataGrid
当前列的显示索引> 从后面的代码:DataGrid 的这个 CurrentColumn.DisplayIndex 属性基本上获取或设置相对于当前显示列的列的显示顺序。它为您提供列在关联的 DataGridView 中显示时的从零开始的位置,如果带区不包含在控件中,则为 -1。
希望这些信息对您有所帮助..
问候
Debasis
If you are in a position to change
GridView
control toDataGrid
, you can try the code given below to get the current column's display index of theDataGrid
from code behind:This
CurrentColumn.DisplayIndex
property of DataGrid basically gets or sets the display order of the column relative to the currently displayed columns. It provides you the zero-based position of the column as it is displayed in the associated DataGridView, or -1 if the band is not contained within a control.Hope the information will be helpful for you ..
Regards
Debasis
这就是我们获取特定单元格值的方法
,希望它能对您有所帮助......
This is how we can get the value of a specific cell
i hope it will helps you....