本文介绍了如何通过单击按钮将选定的gridview值显示到文本框中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我有一个datagridview,其中包含来自excel文件的一些数据。 我希望能够使用我单击按钮时当前选择的单元格填充文本框。 我尝试过以下方法,但未找到方法做到这一点。 private void btnGetValue_Click(object sender,EventArgs e) { txtField1.Text = dataGridView1.Rows [e.RowIndex] .Cells [e.ColumnIndex] .Value.ToString(); } 我尝试过: txtField1.Text = dataGridView1.Rows [e.RowIndex] .Cells [e.ColumnIndex] .Value.ToString(); 解决方案 I have a datagridview that gets populated with some data from an excel file.I want to be able to populate a textbox with the cell that I have currently selected when I click the button.I have tried the following but have been unsuccessful in finding a way to do this.private void btnGetValue_Click(object sender, EventArgs e) { txtField1.Text = dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString(); }What I have tried:txtField1.Text = dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString(); 解决方案 这篇关于如何通过单击按钮将选定的gridview值显示到文本框中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 08-23 00:05