Java:“添加选项卡按钮”对于 JTabbedPane
是否可以像 Firefox 中那样向选项卡式窗格添加按钮。
加号按钮就是我想要的。
谢谢
Is it possible to add a button to a tabbed pane like in firefox.
The plus-button is what I want.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我认为您应该能够通过构建自己的
JTabbedPaneUI
并使用setUI
在JTabbedPane
上设置它来管理它。您的 ComponentUI 具有获取可访问子级的方法。如果您指定一个
JButton
和一个JLabel
那么您就可以开始工作了。不过我自己还没有尝试过。这是“您自己承担风险”:)
I think you should be able to manage it by building your own
JTabbedPaneUI
and setting it on theJTabbedPane
usingsetUI
.Your
ComponentUI
has methods to get a hold of the accessible children. If you specify aJButton
and aJLabel
then you may be in business.I haven't attempted this myself though. This is "at your own risk" :)
您可以尝试以下操作:
You can try this:
在类的默认构造函数和创建方法中编写以下代码,
在主类启动时声明并初始化
int tab2 = 2;
。它的工作。Write Following Code in Default Constructor Of Class
And Create Method to declare and initialized
int tab2 = 2;
at Starting of main class. Its Worked.我尝试了几种解决方案并采用了这个:
所以你有:
I have tried several solutions and came with this one:
So you have: