访问单元格datagridview Winform C#的内容

你好,所以我设法得到我的鼠标突出显示它的行.但是我不知道如何访问其内容.

例如:我突出显示第25行我可以得到它突出显示第25行我怎么不知道如何访问其内容并将其全部放在文本框中.任何人?

解决方法:

您可以使用value属性访问单元格的内容,如下所示

// the content of the cell
var x = dataGridView1.Rows[0].Cells[0].Value;

// this gets the content of the first selected cell 
dataGridView1.SelectedCells[0].Value;

// you can set the cells the user is able to select using this 
dataGridView1.SelectionMode= SelectionMode. //intellisense gives you some options here

要完全按照你的要求做这样的事就足够了

System.Text.StringBuilder t = new System.Text.StringBuilder();
String delimiter = ",";

foreach(DataGridViewCell c in dataGridView1.SelectedRows[0].Cells)
{
    t.Append(c.Value);
    t.Append(delimiter);
}

textBox1.Text = t.ToString();
上一篇:痞子衡嵌入式:盘点国内MCU级RISC-V内核IP厂商


下一篇:痞子衡嵌入式:RISC-V指令集架构MCU开发那些事 - 索引