如何使用文本框从datagridview搜索然后绑定行'数据到标签? C#/ SQL Server CE

时间:2016-12-15 16:08:07

标签: c# datagridview

我想从datagridview中搜索并将结果绑定到这些标签:

我正在研究C#和SQL Server CE,我的项目差不多完成了这几件事。

基本上我想使用客户ID搜索datagridview,当搜索匹配时,我希望匹配行中的数据绑定到标签(或文本框)。

我想通过文本框直接搜索gridview,而不是直接从datagridview搜索。

1 个答案:

答案 0 :(得分:0)

试试这个

for each row as datagridview in dgName.rows
 if txtSearch.text = row.cells("cell name you want to compare").value 'you can add OR here if you want to compare it in multiple cells
  lb1.text = row.cells("cell name that assigned in label1").value
  . . .and so on
 end if
next

如果效果不好,请告诉我