Java 在禁用的文本字段中设置字体颜色
我有一个已禁用的 JTextField,由于可读性问题,我想再次将字体设置为黑色。这样看起来它没有被禁用,但我无法编辑它。 有什么建议吗?
I have a disabled JTextField and due to readability problems i want to make the font black again. So that it looks like its not disabled, but i cant edit it.
any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用
setDisabledTextColor(Color c)
方法来设置所需的颜色。有关详细信息,请检查: javadocsYou can use the
setDisabledTextColor(Color c)
method to set the desired color. For more information check: javadocs尝试使用方法setDisabledTextColor(继承自JTextComponent)
Try using the method setDisabledTextColor (inherited from JTextComponent)
请使用
setDisabledTextColor(Color.BLACK)
将文本颜色设为黑色。Please use
setDisabledTextColor(Color.BLACK)
to make your text color black.