欢迎光临
我们一直在努力

后台更新DataTable行内容的方法-.NET教程,数据库应用

建站超值云服务器,限时71元/月

这几天一直在找绑定后后台修改datatable行这方面的代码,发现很少,但是又不得不实现这样的功能,通过查帮助,自己解决了:)

我是将datatable绑定到listbox上,通过修改datatable来修改listbox值

listbox1.beginupdate(); // stop the listbox from drawing while items are added.

datatable dt;

int indexnum=listbox1.selectedindex;

dt=(datatable)listbox1.datasource;

datarow custrow = dt.rows[indexnum];

custrow.beginedit();

custrow[0] = indexnum;

custrow[1]="after modify";

custrow.endedit();

dt.acceptchanges();

listbox1.endupdate();// end the update process and force a repaint of the listbox.

listbox1.update();

listbox1.beginupdate(); // stop the listbox from drawing while items are added.

datatable dt;

int indexnum=listbox1.selectedindex;

dt=(datatable)listbox1.datasource;

datarow custrow = dt.rows[indexnum];

custrow.beginedit();

custrow[0] = indexnum;

custrow[1]="after modify";

custrow.endedit();

dt.acceptchanges();

listbox1.endupdate();// end the update process and force a repaint of the listbox.

listbox1.update();

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 后台更新DataTable行内容的方法-.NET教程,数据库应用
分享到: 更多 (0)