如何从 Winforms DataGrid 上的选定行获取文本?

发布于 2024-08-29 08:55:18 字数 61 浏览 4 评论 0原文

这看起来很容易,但我找不到从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

寂寞笑我太脆弱 2024-09-05 08:55:18

想通了。一种方法是

string val = (string)dataGrid1[1, 1]; // 单元格 1,第 1 行

Figured it out. One way is

string val = (string)dataGrid1[1, 1]; // cell 1, row 1

绾颜 2024-09-05 08:55:18

这是获取整行文本的方法(与显示如何从 DataGrid 获取单个值的现有答案相反):

string str = "";
int row = datagrid.CurrentRowIndex;
int col = 0;
while (true)
{
    try
    {
        str += datagrid[row,col].ToString() + "|";
        col++;
    }
    catch
    {
        break;
    }
}

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):

string str = "";
int row = datagrid.CurrentRowIndex;
int col = 0;
while (true)
{
    try
    {
        str += datagrid[row,col].ToString() + "|";
        col++;
    }
    catch
    {
        break;
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文