如何修改JTabbedPane选项卡上的JLabel?
假设您有一个 JTabbedPane。在每个选项卡上,您都有一个带有 JLabel 的 JPanel 和一个 JButton。在将 JLabel 添加到窗格后,如何修改它的文本?
So say you had a JTabbedPane. And on each of those tabs, you have a JPanel with a JLabel, and a JButton. How can you modify that JLabel's text after it's already been added to the pane?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以照常使用
jLabelN.setText("New Text");
。标签添加到哪里并不重要。您只需要可以访问变量 jLabelN 即可。You can use
jLabelN.setText("New Text");
as usual. It does not matter where the label is added to. You just need your variable jLabelN to be accessible.您可以轻松地为 GUI 组件编写 getter 和 setter,例如(只是一些片段)
让我们现在将其称为...
使用 getter 和 setter,这是对象数据交互的标准方式
祝你好运
You can easily write getters and setters for your GUI components like a (just some snippets)
Lets call it now as...
Using getters and setters it is a standard way of objects data interaction
Good luck