JTabbedPane 添加空组件

发布于 2024-08-02 05:22:14 字数 245 浏览 6 评论 0原文

猜谜语:我有一个 JTabbedPane,里面有自定义 JPanel。当我尝试访问这些 JPanel 时,我得到的只是 null。我知道面板已添加,因为在 UI 上我可以看到选项卡。我还可以与面板交互并在选项卡之间切换。无论我如何添加这些 JPanel,它总是返回 null。

现在我可以将 JPanel 的 ArrayList 保留在一边进行处理,但我认为这会有点违背 JTabbedPane 保留任何类型模型的目的。

有谁知道这是怎么回事?

Riddle me this: I have a JTabbedPane that has custom JPanels in it. When I try and access those JPanels, all I get back is null. I know that the panels have been added because on the UI I can see the tabs. I can also interact with the panels and switch between tabs. It doesn't matter how I add these JPanels, it always returns null.

Now I could just keep an ArrayList of the JPanels on the side for processing, but I would think that would kinda defeat the purpose of the JTabbedPane keeping any kind of model.

Does anyone know what's going on with this?

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

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

发布评论

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

评论(1

尬尬 2024-08-09 05:22:14

您使用了错误的方法:getTabComponentAt(int) 将返回用于呈现实际选项卡本身的Component(如果您已指定)。您应该改为调用 getComponentAt(int)。我自己以前也做过同样的事情!

You're using the wrong method: getTabComponentAt(int) will return the Component used to render the actual tab itself (if you've specified one). You should call getComponentAt(int) instead. I've done exactly the same thing myself before!

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