0

これを DataGridView ではなく GridControl コードに変換する方法を知りたいです。

foreach (DataGridViewRow row in (IEnumerable)this.dataGridView1.Rows)
            {
                Data.SomethingA item = new Data.SomethingA
                {
                    item.ac = Convert.ToUInt32(row.Cells[5].Value.ToString())
                };
                item.ad = Convert.ToUInt32(row.Cells[2].Value.ToString()[7].ToString());
                item.ab = row.Cells[1].Value.ToString();
                item.az = row.Cells[3].Value.ToString();
                item.ae = Convert.ToUInt32(row.Cells[4].Value.ToString());
                item.aq = row.Cells[6].Value.ToString();
               ABC.Add(item);
            }

ありがとうございました

4

2 に答える 2

0

AspxGridView.DataSource = を dataGridView1.DataSource に設定するか、AspxGrid.DataSource を基になるデータソース (DataTable など) に設定することをお勧めします。

AspxGrid には、データソースから列を自動生成するプロパティがあります。

于 2013-10-01T13:38:52.367 に答える