更改 Java Swing 组件焦点指示器的颜色
我有一个带有 JButton、JTextField 和 JTable 的 JPanel,TAB 键按预期遍历这些组件,并在具有焦点的组件(或 JTable 情况下的单元格)周围绘制一个小黑框。如何更改黑盒焦点指示器的颜色?
I have a JPanel with a JButton, JTextField and a JTable, and the TAB key traverses these components as expected with a little black box drawn around the component (or cell in case of the JTable) that has focus. How can I change the color of the black-box focus indicator?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
选择外观由每个组件的 UI 委托控制,如何设置外观。
举一个具体的例子,在某些 L&F 上,您可以在程序启动时覆盖默认值:
The selection appearance is under the control of each component's UI delegate, discussed in How to Set the Look and Feel.
As a concrete example, on certain L&Fs, you can override the default value when your program starts up: