Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在创建一个无法由我的程序用户修改的文本字段。当我将文本字段设置为无法修改时,该字段中的文本显示为灰色,难以阅读。
有没有办法不让文本变灰?我尝试过使用setForeground,但这似乎不起作用。
setForeground
也许试试 setDisabledTextColor?
使用JLabelinstade of JTextField,JLabel具有相同的JTextField功能并且不能被用户修改并且背景将是正常的而不是灰色的
JLabel
JTextField