在c#中,如何将gridview光标所在行的数据自动添加到textbox中去,如下图:
比如,当光标在第三行,就自动把USER_CODE,USER_NEME,USER_PASSWORD的数据分别显示到“用户条码”、“用户姓名”、“用户秘密”中去?比如,当光标...
比如,当光标在第三行,就自动把USER_CODE,USER_NEME,USER_PASSWORD的数据分别显示到“用户条码”、“用户姓名”、“用户秘密”中去?
比如,当光标在第三行,就自动把USER_CODE,USER_NEME,USER_PASSWORD的数据分别显示到“用户条码”、“用户姓名”、“用户秘密”中去? 展开
比如,当光标在第三行,就自动把USER_CODE,USER_NEME,USER_PASSWORD的数据分别显示到“用户条码”、“用户姓名”、“用户秘密”中去? 展开
3个回答
展开全部
在click时间2
textBox1.Text = this.dataGridView2.CurrentRow.Cells[1].Value.ToString();
textBox2.Text = this.dataGridView2.CurrentRow.Cells[2].Value.ToString();
textBox3.Text = this.dataGridView2.CurrentRow.Cells[3].Value.ToString();
textBox4.Text = this.dataGridView2.CurrentRow.Cells[4].Value.ToString();
textBox5.Text = this.dataGridView2.CurrentRow.Cells[5].Value.ToString();
textBox1.Text = this.dataGridView2.CurrentRow.Cells[1].Value.ToString();
textBox2.Text = this.dataGridView2.CurrentRow.Cells[2].Value.ToString();
textBox3.Text = this.dataGridView2.CurrentRow.Cells[3].Value.ToString();
textBox4.Text = this.dataGridView2.CurrentRow.Cells[4].Value.ToString();
textBox5.Text = this.dataGridView2.CurrentRow.Cells[5].Value.ToString();
展开全部
foreach (DataGridViewRow row inthis.dataGridView1.SelectedRows)
{
Customer cust = row.DataBoundItem as Customer;
if (cust != null)
{
cust.SendInvoice();
}
}
{
Customer cust = row.DataBoundItem as Customer;
if (cust != null)
{
cust.SendInvoice();
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用gridview的单击事件 获取当前列的TAG然后把值赋到你要的里面
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询