Java awt Package Checkbox Example on October 18, 2015 Get link Facebook X Pinterest Email Other Apps import java.awt.*; public class CheckboxDemo { public static void main(String args[]) { Frame f = new Frame(); f.setLayout(new FlowLayout()); Checkbox cb = new Checkbox("Literate"); f.add(cb); f.setSize(300,300); f.setVisible(true); } } Comments
Comments
Post a Comment