datagridview 中的列表框
我正在开发 C# Windows 窗体应用程序。我正在使用 datagridview 列出数据库中的详细信息。在我的一种表单中,我希望 datagridview 给定行列出其子项目。一行包含多个子项。
-------------------------
Item name - Quantity-
-------------------------
Fruit - 10Kg -
Seeds - 5kg -
- -
-------------------------
水果子项目包括苹果,菠萝等......
上面的表格是一个datagridview。单击 Fruit 单元格时,我想在当前单元格底部或当前行的列表框中显示其子单元格。在 datagridview 列类型中,我无法获取任何 datagridviewlistbox 列。
I'm working on a C# windows forms application.I am using datagridview to list details from database. In one of my form i want datagridview given row to list its sub items. One row contain multiple sub items .
-------------------------
Item name - Quantity-
-------------------------
Fruit - 10Kg -
Seeds - 5kg -
- -
-------------------------
Fruit sub item consist of Apple,Pineapple etc...
This above table is a datagridview. On clicking the Fruit cell , I want to display its sub in a LISTBOX on current cell bottom or in that current row. In datagridview column type i can'nt get any datagridviewlistbox column.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信这应该可以帮助您实现您想要的目标。
查看这篇 MSDN 文章: - 如何:使用两个窗口创建主表/详细信息表单表单 DataGridView 控件
I believe this should help you achieve what you are looking for.
Check out this MSDN article : - How to: Create a Master/Detail Form Using Two Windows Forms DataGridView Controls