如何在 ListView 中嵌入 GroupBox?
我有许多组框需要在 ListView 中列出。
我尝试过:
listView1.Controls.Add(new NewsBox());
(NewsBox 是从 GroupBox 派生的自定义类,仅具有标准标签和确定的大小)
无论如何,这适用于列出第一个控制框,但不适用于列出 2 个或更多控制框。
有什么想法吗?
I have numerous groupboxes that need to be listed in a ListView.
I have tried:
listView1.Controls.Add(new NewsBox());
(NewsBox being a custom class derived from GroupBox, just with standard labels and a definite size)
Anyways, that works for listing the first controlbox, but not for 2 or more.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这行不通。 ListView 控件中不能有多个 GroupBox。
要将内容添加到 ListView,请使用 myListView.Items.Add(...)。
This won't work. You can't have multiple GroupBoxes in a ListView control.
To add things to a ListView, use myListView.Items.Add(...).