如何显示Jtabbedpane工作区中选项卡的内容?
我将一个 jpanel 放在 Jtabbedpane 的选项卡上,该选项卡位于左侧,nw 单击该选项卡时我想在选项卡窗格的工作区中显示标签和文本字段,请帮助。
i'v put a jpanel on the tab of Jtabbedpane which is at the left side ,nw when the tab is clicked i want to display labels and textfields in the workspace of the tabbedpane,plz hlp.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当您说“选项卡窗格的工作区”时,我认为您指的是 JPanel?
在将 JPanel 添加到 JTabbedPane 之前,必须使用 JPanel.add() 将 JLabels 和 JTextfields 连接到 JPanel。
When you say 'workspace of the tabbedpane' I think you are referring to your JPanel?
You must attach the JLabels and JTextfields to the JPanel using JPanel.add() before you add the JPanel to the JTabbedPane.
我认为你应该完全按照@7SpecialGems所说的去做(+1)。
下面是一个示例,展示了它在代码中的具体外观。
祝你好运,博罗。
I think you should do exactly as @7SpecialGems says (+1 for that).
Here is an example showing how exactly it can look like in code.
Good luck, Boro.