Java Editable JCombobox Keylistener event for Enter key

前端 未结 6 1821
太阳男子
太阳男子 2020-12-11 05:56

I have editable JCombobox and I added keylistener for combobox editor component. When user press \'Enter key\' and if there is no text on the editable combobox I need to dis

6条回答
  •  北海茫月
    2020-12-11 06:51

    Please check the event ascii code by ev.getkeycode() and check if it is a number or character. If it is neither a number nor a character do nothing. If it is what you want then do the process.

提交回复
热议问题