Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
追加するとすぐに
String[] possibleClasses = {"12", "11", "10", "9", "8", "7", "6", "5"}; JComboBox classes = new JComboBox(possibleClasses);
私のプログラムのいずれに対しても、フレームにスイングコンポーネントは表示されません。私が得る唯一のものは空のフレームです。JComboBoxを使用する秘訣はありますか?
コンポーネントをに表示するには、を作成するだけJComboBoxでは不十分です。コンテナに追加JFrameする必要があります。
JComboBox
JFrame
myJFrame.add(classes);