package UI;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JLabel;
public class Practice{
JFrame frame;
JComboBox combo;
public Practice() {
frame=new JFrame("JComboBox Example");
frame.setSize(450,450);
frame.setLocationRelativeTo(null);
frame.setLayout(null);
String h1[]= {"Hancie","Nitesh"};
combo=new JComboBox(h1);
combo.setBounds(10,10,150,25);
frame.add(combo);
frame.setVisible(true);
}
public static void main(String[] args) {
new Practice();
}
}