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.
JComboBoxプログラムで a の状態を選択するように設定し、その内容をドロップダウンに表示するにはどうすればよいですか?
JComboBox
以下を使用して、選択したインデックスを設定してみてください。setSelectedItem(Object item)または、インスタンスsetSelectedIndex(int index)を呼び出します。JComboBox
setSelectedItem(Object item)
setSelectedIndex(int index)
jComboBox.showPopup(); //or //jComboBox.setPopupVisible(true);
特定の期間のみ表示したい場合は、特定の期間が経過した後にSwingTimerを使用して呼び出すだけです。setPopupVisible(false);
Timer
setPopupVisible(false);
参考文献: