c#双击gridview,选中一行,把这行值附到变量A、B、C里?
privatevoiddataGridView1_CellContentClick(objectsender,DataGridViewCellEventArgse){?}...
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
?
} 展开
{
?
} 展开
3个回答
展开全部
string A="";
string B="";
string C="";
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
A=dataGridView1.CurrentRow.Cells[0].Value.ToString();
B=dataGridView1.CurrentRow.Cells[1].Value.ToString();
C=dataGridView1.CurrentRow.Cells[2].Value.ToString();
}
string B="";
string C="";
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
A=dataGridView1.CurrentRow.Cells[0].Value.ToString();
B=dataGridView1.CurrentRow.Cells[1].Value.ToString();
C=dataGridView1.CurrentRow.Cells[2].Value.ToString();
}
展开全部
dgv1.SelectedRow.Cells[0].value.tostring();
dgv1.SelectedRow.Cells[1].value.tostring();
dgv1.SelectedRow.Cells[2].value.tostring();
dgv1.SelectedRow.Cells[1].value.tostring();
dgv1.SelectedRow.Cells[2].value.tostring();
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
string strBian = dataGridView1.currentrow["编号"].tostring() //其他的就这样类推可得
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询