如何在 ListView 中嵌入 GroupBox?

发布于 2024-10-01 15:06:49 字数 206 浏览 2 评论 0原文

我有许多组框需要在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

熊抱啵儿 2024-10-08 15:06:49

这行不通。 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(...).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文