Java 在禁用的文本字段中设置字体颜色

发布于 2024-09-18 11:25:45 字数 76 浏览 1 评论 0原文

我有一个已禁用的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

电影里的梦 2024-09-25 11:25:45

您可以使用setDisabledTextColor(Color c)方法来设置所需的颜色。有关详细信息,请检查: javadocs

You can use the setDisabledTextColor(Color c) method to set the desired color. For more information check: javadocs

隔纱相望 2024-09-25 11:25:45

尝试使用方法setDisabledTextColor(继承自JTextComponent)

Try using the method setDisabledTextColor (inherited from JTextComponent)

他夏了夏天 2024-09-25 11:25:45

请使用 setDisabledTextColor(Color.BLACK) 将文本颜色设为黑色。

Please use setDisabledTextColor(Color.BLACK) to make your text color black.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文