I try with code below:
public class JComboBoxDemo extends JFrame{
private JPanel panelParents;
private JLabel lblTitle;
private JComboBox cboLanguage;
public JComboBoxDemo() {
super("JComboBox Demo");
setContentPane(panelParents);
String language[] = {"English","Khmer","Korea","Chinese","Thai","Russia"};
cboLanguage = new JComboBox(language);
cboLanguage.setSelectedIndex(1);
cboLanguage.setMaximumRowCount(5);
pack();
setBounds(100,100,450,256);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setLocationRelativeTo(null);
}
}
But it doesn't show anything in JComboBox
, What's wrong with my code?