本文介绍了Datagridview 全行选择但获取单个单元格值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个数据网格视图,它是一个完整的行选择.无论单击行中的哪个单元格,我都将如何仅从某个单元格中获取数据,因为它突出显示了整行.
I have a datagridview that is a full row select.How would I grab the data from only a certain cell no matter what cell in the row was clicked on since it highlights the entire row.
推荐答案
你可以这样做:
private void datagridview1_SelectionChanged(object sender, EventArgs e)
{
if (datagridview1.SelectedCells.Count > 0)
{
int selectedrowindex = datagridview1.SelectedCells[0].RowIndex;
DataGridViewRow selectedRow = datagridview1.Rows[selectedrowindex];
string cellValue = Convert.ToString(selectedRow.Cells["enter column name"].Value);
}
}
这篇关于Datagridview 全行选择但获取单个单元格值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!