Java Swing How to - Make thumbnail vertical and move bottom-to-top








Question

We would like to know how to make thumbnail vertical and move bottom-to-top.

Answer

//  w w w.j  a  va2 s . com
import javax.swing.JSlider;

public class Main {
  public static void main(String[] argv) throws Exception {
    JSlider slider = new JSlider();
    slider.setOrientation(JSlider.VERTICAL);
    slider.setInverted(false);
  }
}