如何使用datagridview绑定c#数据表

如何使用datagridview绑定c#数据表

本文介绍了如何使用datagridview绑定c#数据表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在c#windows应用程序中创建了一个数据表

我在这个datagridview中添加了两列(colItemCode,colDescription)



现在我想绑定这个datagrideview与sql数据表调用ITEM_MASTER



特别的是我要添加表提交(itCode,itDescription,这些都是SQL表字段)在windows窗体应用程序的datagridview中调用两列(colItemCode,colDescription)



如何执行此操作

thak you

解决方案




I have created a data table in c# windows application
and i have add two columns to this datagridview (colItemCode,colDescription)

now i want to bind this datagrideview with sql data table call ITEM_MASTER

Special thing is i want to add the table filed (itCode,itDescription, these are SQL table field) To two columns call (colItemCode,colDescription) in datagridview in windows form application

how to do this
thak you

解决方案




这篇关于如何使用datagridview绑定c#数据表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 23:15