Mega Code Archive

 
Categories / Java / Swing JFC
 

Snap to tick marks

import javax.swing.JSlider; public class Main {   public static void main(String[] argv) throws Exception {     // Create a horizontal slider that moves left-to-right     JSlider slider = new JSlider();     slider.setSnapToTicks(true);   } }