posted 19 years ago
Hello frnds,
I am adding JSlider to my program.. when I want to change background and foreground color of JSlider, background color changes to black correctly..
but foreground color.. (I want to have numbers with JSlider in white).. does not change to white.. !!
JSlider framesPerSecond = new JSlider(JSlider.HORIZONTAL, FPS_MIN, FPS_MAX, FPS_INIT);
framesPerSecond.setBackground(Color.black);
framesPerSecond.setForeground(Color.white);
Is default numbers of JSlider part of Background??
If yes.. is there any way to change color of numbers.. ??