删除 JTabbedPane“当前选定的”虚线
如何删除 JTabbedPane 上当前选定选项卡周围的虚线。
例如:
看到它周围的虚线了吗?
How do you remove the dotted line around the currently selected tab on a JTabbedPane.
For example:
See the dotted line around it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我刚刚找到了一个更好的方法:
I just found a better way:
尝试设置焦点颜色
或将其设置为与背景相同的颜色
try setting the focus colour
or set it to the same colour as the background
和感觉。
我相信需要什么
将取决于您使用的 LnF。
您需要创建一个自定义
TabbedPaneUI 类,可能
覆盖您选择的那个
L&F。您可能会重写
javax.swing.plaf.basic.BasicTabbedPaneUI
。paintFocusIndicator
,并使其成为一个空方法。and Feel.
I believe what is needed
will depend on the LnF you're using.
You'll want to create a custom
TabbedPaneUI class, probably
overriding the one in your chosen
L&F. You might be overriding
javax.swing.plaf.basic.BasicTabbedPaneUI
.paintFocusIndicator
, and make it an empty method.myTabbedPane.setUI(myTabbedPaneUI)