C#如何把dataGridView中显示的数据读取到textBox

textBox1.Text=(string)dataGridView1.SelectedRows[0].Cells[0].Value.ToString();textBox... textBox1.Text = (string)dataGridView1.SelectedRows[0].Cells[0].Value.ToString ();
textBox2.Text = this.dataGridView1.CurrentRow.Cells[1].Value.ToString ();
以上两种都行不通,请求解答。
展开
 我来答
老彭的游戏
2016-05-08 · TA获得超过123个赞
知道小有建树答主
回答量:218
采纳率:0%
帮助的人:110万
展开全部
  1. 添加一个datagridview

  2. 添加两个textbox

  3. 添加事件dataGridView1_CellClick

  4. public Form1()

  5.         {

  6.             InitializeComponent();

  7.             DataTable dt = new DataTable();

  8.             dt.Columns.Add("id");

  9.             dt.Columns.Add("value");

  10.             Random rd=new Random();

  11.             for (int i = 0; i < 5; i++)

  12.             {

  13.                 DataRow dr = dt.NewRow();

  14.                 dr["id"] = i;

  15.                 dr["value"] = rd.Next();

  16.                 dt.Rows.Add(dr);

  17.             }

  18.             dataGridView1.DataSource = dt;

  19.             dataGridView1.CellClick+=dataGridView1_CellClick;

  20.         }


  21.         private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)

  22.         {

  23.             if (e.ColumnIndex > -1 && e.RowIndex > -1)

  24.             {

  25.                 //显示一个单元格。

  26.                 textBox1.Text = dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString();

  27.                 //显示一行

  28.                 DataGridViewRow dr = dataGridView1.Rows[e.RowIndex];

  29.                 textBox2.Text = string.Empty;//清空原有值

  30.                 foreach (DataGridViewCell item in dr.Cells)

  31.                 {

  32.                     textBox2.Text += item.Value.ToString() + " ";

  33.                 }

  34.             }

  35.         }

匿名用户
2014-04-04
展开全部

string 字符 = dataGridView.Rows[dataGridView.CurrentCellAddress.Y].Cells[1].Value.ToString(); 

http://blog.csdn.net/xianfajushi/article/details/8141972

本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
zhang399401
2014-04-04 · TA获得超过702个赞
知道小有建树答主
回答量:1347
采纳率:0%
帮助的人:930万
展开全部
你是要读取选中的还是读取第一行?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式