Mega Code Archive

 
Categories / Java Tutorial / Swing
 

JSlider Client Properties

You can enable a client property that signals the slider to fill this track up to the point of the current value that the thumb has crossed. The name of this property is JSlider.isFilled, and a Boolean object represents the current setting. import java.awt.BorderLayout; import javax.swing.JFrame; import javax.swing.JSlider; public class TickSlidersClientProperty {   public static void main(String args[]) {     JFrame frame = new JFrame("Tick Slider");     frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);     JSlider oneJSlider = new JSlider();     oneJSlider.putClientProperty("JSlider.isFilled", Boolean.TRUE);     JSlider anotherJSlider = new JSlider();     // Set to default setting     anotherJSlider.putClientProperty("JSlider.isFilled", Boolean.FALSE);     frame.add(oneJSlider, BorderLayout.NORTH);     frame.add(anotherJSlider, BorderLayout.SOUTH);     frame.setSize(300, 200);     frame.setVisible(true);   } }