Creating JCheckBox using Java Swing
Creating JCheckBox using Java Swing: https://youtu.be/b7dQSD11UQ0 ________________________________________________ How to make JCheckBox
package Test;
import javax.swing.*;
public class Test{
public static void main(String[] args){
JFrame frame = new JFrame("Test Frame");
frame.setBounds(600,150,500,300);
frame.setLayout(null);
JCheckBox checkbox = new JCheckBox("Java");
checkbox.setBounds(10,20,100,20);
JCheckBox checkbox2 = new JCheckBox("Python");
checkbox.setBounds(10,60,100,20);
frame.add(checkbox);
frame.add(checkbox2);
frame.setVisible(true);
}
}
________________________________________________
Dark Hers
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