从 TabbedPane 中的不同选项卡访问数据 - Java
我有一个带有几个选项卡的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要保留对不同选项卡上所有控件的引用。自定义
JPanel
的映射就可以解决这个问题,使用选项卡 ID 或名称作为键,使用自定义组件(可能有一个用于获取其中包含的数据的 getter)作为值。You need to keep a reference to all the controls on the different tabs. A map of your custom
JPanel
s 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.