winform datagridview 如何取得选中行单元格的值
2个回答
展开全部
方法有很多 我就用 两种吧 一种是用 cellcheck 事件:
private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
{
string str=string str = dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString();
}
另一种吧
string cellvalue = dataGridView1.SelectedCells[0].Value.ToString();
SelectedCells[]是你选定的单元格的数组,但要dataGridView1能允许选择多个单元格
本人比较喜欢第二种
private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
{
string str=string str = dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString();
}
另一种吧
string cellvalue = dataGridView1.SelectedCells[0].Value.ToString();
SelectedCells[]是你选定的单元格的数组,但要dataGridView1能允许选择多个单元格
本人比较喜欢第二种
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询