|
#1
|
|||
|
|||
|
/*
JSlider Class We can see the Sliders in the Color Palatte Like Scrollbar cons: JSlider() Methods: setValue(int) getValue() int setMinimum(int) setMaximum(int) */ import java.awt.*; import javax.swing.*; import java.awt.event.*; class sw10 extends JFrame { JSlider js = new JSlider(); public sw10() { Container con = getContentPane(); con.add(js); con.setLayout(new FlowLayout()); setSize(300,300); setVisible(true); } public static void main(String args[]) { new sw10(); } }
__________________
UK education consultant in coimbatore |
|
|