如何从 Winforms DataGrid 上的选定行获取文本?
这看起来很容易,但我找不到从 DataGrid 上选定行检索文本的方法。网格仅选择单行 - 不允许选择多行。
This seems like it would be easy but I can't find a way to retrieve the text from the selected row on a DataGrid. The grid is single row selected only - no multiple row selection is allowed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
想通了。一种方法是
string val = (string)dataGrid1[1, 1]; // 单元格 1,第 1 行
Figured it out. One way is
string val = (string)dataGrid1[1, 1]; // cell 1, row 1
这是获取整行文本的方法(与显示如何从 DataGrid 获取单个值的现有答案相反):
This is how you get the text of the entire row (as opposed to the existing answer that shows how to get a single value from a DataGrid):