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.
我有许多需要在 ListView 中列出的组框。
我努力了:
listView1.Controls.Add(new NewsBox());
(NewsBox 是从 GroupBox 派生的自定义类,只有标准标签和确定的大小)
无论如何,这适用于列出第一个控制框,但不适用于 2 个或更多。
有任何想法吗?
这行不通。ListView 控件中不能有多个 GroupBox。
要将内容添加到 ListView,请使用 myListView.Items.Add(...)。