質問はタイトルにあります。
私は現在次のようなことをしています:
jSperator = new JSeparator();
jSeparator1.setForeground(new java.awt.Color(255, 51, 51));
ただし、セパレータはデフォルトの色(212、212、212など)を保持します。
質問はタイトルにあります。
私は現在次のようなことをしています:
jSperator = new JSeparator();
jSeparator1.setForeground(new java.awt.Color(255, 51, 51));
ただし、セパレータはデフォルトの色(212、212、212など)を保持します。
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