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

The JSeparator has 2 colors, one for the line, one for the shadow. You can change both, setting colors to the Background and the Foreground respectively.

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 に答える