在arraylist中添加JPanel

发布于 2024-10-20 11:40:15 字数 239 浏览 3 评论 0原文

我有一个名为 parentPanelJPanel。 另外,我在 parentPanel 中还有其他 sonPanel

我想删除 sonPanels 并将它们添加到 arraylist

你能帮我吗?

提前致谢!!! :)

I have a JPanel called parentPanel.
Also I have other sonPanels in parentPanel.

I want to remove the sonPanels and add them in an arraylist<JPanel>

Can you help me??

Thanks in advance!!! :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

爱已欠费 2024-10-27 11:40:15

由于 JPanel 继承自 Container,因此您可以使用 getComponents() 方法 获取您的 sonPanel 列表。

获取所有这些后,您可以通过调用 removeAll() 方法
如果您有 deleteRows 方法,只需调用 JPanel 上的第一个方法,我们将其称为 contentPane,然后调用第二个方法来删除。

public Component[] getAndClearSonPanels() {
    Component[] currentComponents = contentPane.getComponents();
    contentPane.removeAll();
    return currentComponents;
}

如果您需要更深入地遍历每个 JPanel,则需要递归地执行此操作。

Since JPanel inherits from Container, you can use the getComponents() method to get the list of your sonPanels.

After getting them all, you can clear you parentPanel by calling the removeAll() method.
If you had a deleteRows method, simply call the first method on your JPanel, lets call it contentPane, and then call the second method to remove.

public Component[] getAndClearSonPanels() {
    Component[] currentComponents = contentPane.getComponents();
    contentPane.removeAll();
    return currentComponents;
}

If you need to traverse even more deeply into each of the JPanels, you would need to, recursively do so.

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