所以,我有這種方法;[JAVA]如何調用方法「itemStateChanged」
public void itemStateChanged(ItemEvent event){
if(event.getSource() == temasJogo){
if(event.getStateChange() == ItemEvent.SELECTED){
indiceTema = indiceTemas[ temasJogo.getSelectedIndex() ];
}
}
}
只爲這JComboBox
temasJogo = new JComboBox(temas);
temasJogo.addActionListener(this);
我需要它,以便可以選擇遊戲的其他主題修改我的類的屬性。問題是,我無法在任何地方調用此方法。我知道答案會非常簡單,但我確實需要幫助。
我知道這真的很愚蠢,我使用了一個ActionListener,即使它是一個ItemListener。非常感謝! –
它總是小事情;) – MadProgrammer