gpt4 book ai didi

java - 如何为 JLabel 设置禁用的文本颜色?

转载 作者:行者123 更新时间:2023-12-04 04:49:46 25 4
gpt4 key购买 nike

如何为每个 JLabel 设置禁用的文本颜色在我的程序中。它不在文档中。有没有办法为它设置禁用的前景色?

最佳答案

我明白了。可以使用 UI 默认值设置前景。

// Use the key, Label.disabledForeground
UIManager.put("Label.disabledForeground",Color.RED);

JLabel l=new JLabel("Label Disabled");
l.setEnabled(false);
// You get a red foreground

对于 NimbusLookAndFeel
UIManager.put("Label[Disabled].textForeground",Color.RED);

关于java - 如何为 JLabel 设置禁用的文本颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17608712/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com