Java awt Package Choice Example

 import java.awt.*; 
public class ChoiceDemo
{
public static void main(String args[])
{
Frame f = new Frame();
f.setLayout(new FlowLayout());
Choice ch = new Choice();
ch.add("India");
ch.add("Nepal");
ch.add("Shri Lanka");
ch.add("USA");
ch.add("UK");
f.add(ch);
f.setSize(300,300);
f.setVisible(true);
}
}

Comments