Как определить, когда сочетание клавиш Ctrl + A , Ctrl + C или Ctrl Нажмите + V и перейдите к функции их сочетания клавиш.Они потребовали, чтобы я сделал это под этой функцией Java, редактор может только слушать упомянутые ярлыки.Это выполнимо?
TCombo combo = new TCombo();
JTextComponent editor = (JTextComponent) combo.getEditor().getEditorComponent();
editor.addKeyListener(new KeyAdapter() {
public void keyPressed(KeyEvent e) {
String keyChar = String.valueOf(e.getKeyChar());
int keyCode = e.getKeyCode();
//If Ctrl + A
//do the normal function of select all
//If Ctrl + C
//do the normal function of copy
//If Ctrl + V
//do the normal function of paste
}
});