Nimbus 的 JPanel 和 TitledBorder UI 属性
我想将默认的 Nimbus TitledBorder L&F 更改为简单的蓝色圆形标题边框。标题也应该是蓝色的。 我可以做到,但问题是我想将其应用于特定面板,而不是 GUI 中的所有面板,因此 UIManager.put("TitledBorder.titleColor", Color.blue)
是不适用。 我可以使用 L&F 属性以外的其他方式来完成此操作,但如果我必须更改某些内容,则使用 L&F 属性对代码的更改较小。 如何使用 L&F 属性仅设置所需的面板? 谢谢你的帮助。
I would like to change the default Nimbus TitledBorder L&F, to a simple blue rounded titled border. The title should also be blue.
I could make it, but the problem is that i would like to apply it to specific panel and not all panels in my GUI, so UIManager.put("TitledBorder.titleColor", Color.blue)
is not applicable.
I could do it other way than with the L&F properties, but using L&F properties is less change in code if i have to change something.
How can i set to only the wanted panel using L&F properties ?
Thank you for help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你能试试下面的代码吗?
Can you try the below code?