程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> c#-C#從Datagridview中讀取某列的所有字符,並拼接成一個字符

c#-C#從Datagridview中讀取某列的所有字符,並拼接成一個字符

編輯:編程綜合問答
C#從Datagridview中讀取某列的所有字符,並拼接成一個字符

`StringBuilder detail = new StringBuilder("");

    string f10username;
    string f10number;
    public  void button1_Click(object sender, EventArgs e)
    {
        if (a + b + c + d == 4)
        {

        for (int i = 0; i < this.dataGridView1.Rows.Count; i++)
        {
            f10username = this.dataGridView1.Rows[i].Cells[1].Value.ToString();
            f10number = this.dataGridView1.Rows[i].Cells[9].Value.ToString();

           detail.Append("圖書編號" + f10username + "有" + f10number + "本;\n");

        }
            Form11 f11 = new Form11(this.label2 .Text ,this .nameform10,this .textBox1 .Text ,this .textBox2 .Text ,this .textBox3.Text ,this .comboBox1 .Text  ,this .datetime,this.detail .ToString (),this.label10 .Text );
            f11 .ShowDialog ();

        }
    }``

這是我自己寫的,但是報錯,求大神指點

最佳回答:


可以遍歷整個Datagridview的rows,然後獲取column["想要獲取的列的名稱"]的值

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved