从 TabbedPane 中的不同选项卡访问数据 - Java

发布于 2024-12-25 16:42:49 字数 148 浏览 2 评论 0原文

我有一个带有几个选项卡的 JTabbedPane,每个选项卡都是一个扩展 JPanel 的类,并包含一个布局(例如文本字段和标签)。我一直在尝试从各个选项卡获取数据,但我不知道该怎么做。我的目标是“获取”所有选项卡中的数据并在“主”选项卡中处理它。

有办法这样做吗?

i have a JTabbedPane with several tabs, each of them is a class that extends JPanel, and contains a layout (textfields and labels for example). i been trying to reach the data from various tabs, but i cant figure out how to do it. my goal is to 'reach' the data from all the tabs and process it in the 'main' tab.

is there a way to do so?

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

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

发布评论

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

评论(1

楠木可依 2025-01-01 16:42:49

您需要保留对不同选项卡上所有控件的引用。自定义 JPanel 的映射就可以解决这个问题,使用选项卡 ID 或名称作为键,使用自定义组件(可能有一个用于获取其中包含的数据的 getter)作为值。

You need to keep a reference to all the controls on the different tabs. A map of your custom JPanels would do the trick, using a tab id or name as the key and your custom component (which presumably has a getter for the data contained thereon) as the value.

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