将组件添加到两个不同的 JTabbedPanes

发布于 2024-08-31 14:48:33 字数 540 浏览 1 评论 0原文

我有一个 ComponentsLinkedList,我想将每个组件添加到两个不同的 JTabbedPanes 中。由于某种原因,Swing 只允许我将每个组件放入其中一个组件中。我使用的代码如下:

/* The two tab panes */
JTabbedPane leftTabs = new JTabbedPane();
JTabbedPane rightTabs = new JTabbedPane();

for (int i=0; i<tabPanes.size(); i++) {
    rightTabs.add(tabPanes.get(i));
    leftTabs.add(tabPanes.get(i));
}

无论我最后放置的哪个 add 调用都是有效的;如果我最后添加到 leftTabs ,则 rightTabs 最终为空,反之亦然。

关于如何让它发挥作用有什么想法吗?谢谢!

I have a LinkedList of Components, each of which I would like to add into two different JTabbedPanes. For some reason, Swing is only letting me put each component into one or the other. The code I'm using is the following:

/* The two tab panes */
JTabbedPane leftTabs = new JTabbedPane();
JTabbedPane rightTabs = new JTabbedPane();

for (int i=0; i<tabPanes.size(); i++) {
    rightTabs.add(tabPanes.get(i));
    leftTabs.add(tabPanes.get(i));
}

Whichever add call I put last is the one that works; if I add to leftTabs last, then rightTabs ends up empty, and vice-versa.

Any ideas on how to get this working? Thanks!

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

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

发布评论

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

评论(1

终陌 2024-09-07 14:48:33

一个组件只能有一个父组件,因此您不能将其添加到两个不同的选项卡。

然而,组件的模型可以共享。例如:

JTextField textField1 = new JTextField();
JTextField textField2 = new JTextField();
textField2.setDocument( textField1.getDocument() );

所以你要弄清楚如何共享模型,而不是组件。

A component can only have a single parent, so you can't add it to two different tabs.

However the model of the component can be shared. For example:

JTextField textField1 = new JTextField();
JTextField textField2 = new JTextField();
textField2.setDocument( textField1.getDocument() );

So somehow you to figure out how to share models, not the components.

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