Creating JScrollBar using Java Swing
Creating JScrollBar using Java Swing: https://youtu.be/RwoMraskn5w ________________________________________________ How to make JScrollBar
package Test;
import javax.swing.*;
public class ScrollBar {
ScrollBar(){
JFrame frame = new JFrame("Test Frame");
JScrollBar sc = new JScrollBar();
sc.setBounds(100,100,50,100);
frame.setSize(500,300);
frame.add(sc);
frame.setLayout(null);
frame.setVisible(true);
}
public static void main(String[] args) {
new ScrollBar();
}
}
YouTube
https://instagram.com/darkhers
https://www.facebook.com/darkhers
TikTok
https://www.tiktok.com/@darkhers
https://www.pinterest.co.uk/darkhers
Comments
Post a Comment