重新给datasource 附值
问题描述的不是很清楚,如何是list集合更新,你可以操作list()里面有很多操作方法,要是你想把对象里的数据更新到list里面去,循环遍历操作
选中你要修改的行 得到这个对象 修改 然后保存 重新加载数据 不知道你说的是这个意思么》?
这个是我在winform中弄的小工具中的一部分代码 希望能帮到你
DataGridViewCellCollection cells = dataView.CurrentRow.Cells;
this.lblAcountId.Text = cells["Id"].Value.ToString();
this.cmbTypes.Text = cells["Type"].Value.ToString();
this.txtPwd.Text = cells["Pwd"].Value.ToString();
this.txtDescription.Text = cells["AcountMessage"].Value.ToString();