Posts by Maria de Fátima • 11 points
1 post
-
0
votes2
answers2888
viewsA: How to use mouse click and keyboard ENTER?
I took the click of 'Enter' in a textfield in javafx like this: private void clikBusc(KeyEvent event) { if (event.getCode() == KeyCode.ENTER) { System.out.println("deu certo"); } } So whenever I…