gpt4 book ai didi

java - Swing UIManager.getColor() 键

转载 作者:IT老高 更新时间:2023-10-28 20:45:45 28 4
gpt4 key购买 nike

是否有用于 Swing 的 UIManager.getColor() 键的列表?我似乎无法在网上找到它,只是偶尔引用 "Panel.background""Table.selectionBackground" 等字符串。

最佳答案

我认为没有定义的标准键集。但是您可以尝试这段代码以按字母顺序列出当前可用的代码:

List<String> colors = new ArrayList<String>();
for (Map.Entry<Object, Object> entry : UIManager.getDefaults().entrySet()) {
if (entry.getValue() instanceof Color) {
colors.add((String) entry.getKey()); // all the keys are strings
}
}
Collections.sort(colors);
for (String name : colors)
System.out.println(name);

这会产生一个太长的列表,无法在此处重现。

关于java - Swing UIManager.getColor() 键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/730649/

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