JFrame に JComboBox を配置しようとしています。クリックするとコンボの内容が表示されますが、JFrame には表示されませんでした。
私はすでに試しました:.setVisible(true)、.setEnabled(true)など。
これが私のコードです:
public class tryCode {
private final JComboBox vehicleTypeBox = new JComboBox(new String[] {"HELLO WORLD", "OLA K ASE"});
private JFrame frame;
public tryCode() {
frame = new JFrame("");
frame.setSize(new Dimension(300, 300));
frame.setLayout(null);
frame.setResizable(false);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
showComboBox();
}
public void showComboBox() {
vehicleTypeBox.setBounds(10,80,100,30);
vehicleTypeBox.setSelectedIndex(0);
frame.add(vehicleTypeBox);
}
}
どんな解決策でも大歓迎です!. ありがとう