8

问题在标题中。

我目前正在做类似的事情:

jSperator = new JSeparator();
jSeparator1.setForeground(new java.awt.Color(255, 51, 51));

但是分隔符保持他的默认颜色,比如 212,212,212。

4

2 回答 2

13
于 2012-10-26T09:07:42.900 回答
6

JSeparator 有两种颜色,一种用于线条,一种用于阴影。您可以更改两者,分别将颜色设置为背景和前景。

JSeparator sep = new JSeparator();
sep.setForeground(Color.green); // top line color
sep.setBackground(Color.green.brighter()); // bottom line color
于 2014-12-30T14:35:56.530 回答