Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想向你们寻求有关数据网格的帮助。
当我从我的datagridview中的下拉列表中选择一个值时,我如何从数据库中加载或获取其数据并将其放在旁边的datagrid中
示例当我选择一个项目代码时,所有列都必须填写与项目代码对应的数据。
由于您的问题是通用的,因此您可以遵循以下理论答案:
使用下拉列表的SelectedIndexChanged事件将选定的值传递给数据库。从数据库中检索与该值对应的值并将它们填充到DataSet. 将此 DataSet 用作 GridView 的数据源。您甚至可以使用Datareader代替数据集。
SelectedIndexChanged
DataSet
Datareader