zoukankan      html  css  js  c++  java
  • C#——DataGridView选中行,在TextBox中显示选中行的内容

    C#——DataGridView选中行,在TextBox中显示选中行的内容,在DataGridView的SelectionChanged实践中设置如下代码

    private void dataGridView1_SelectionChanged(object sender, EventArgs e)

    {

    int index = dataGridView1.SelectedRows[0].Index; //获取选中行的行号

    textBox1.Text = dataGridView1.Rows[index].Cells[0].Value.ToString();

    textBox2.Text = dataGridView1.Rows[index].Cells[1].Value.ToString();

     

    this.textBox_ID.Text = this.dataGridView1.SelectedRows[0].Index.ToString();

    this.textBox_CityName.Text=this.dataGridView1.CurrentRow.Cells[1].Value.ToString();//按照这种写法也可以

    this.textBox_CityCode.Text = this.dataGridView1.CurrentRow.Cells[2].Value.ToString();

    this.textBox_District.Text = this.dataGridView1.CurrentRow.Cells[3].Value.ToString();

    this.textBox_Population.Text = this.dataGridView1.CurrentRow.Cells[4].Value.ToString();

    }

  • 相关阅读:
    调试
    自定义缓冲函数
    缓冲
    如何控制动画
    开发中遇到过的坑
    动画控制属性
    自定义动画
    CATransition(过渡)
    动画基础(显式动画)
    呈现图层
  • 原文地址:https://www.cnblogs.com/AmatVictorialCuram/p/5066261.html
Copyright © 2011-2022 走看看