Event handling traditionally is an important topic in frontend development. This is because users often do something like clicking the mouse button or entering text, and the application is supposed to appropriately react to it. In this chapter, we talk about the way JavaFX handles events, as usual stressing Kotlin techniques for streamlining our coding.
What Events Are and Event Processing
Events are occurrences of interest, with mouse and keyboard actions being two predominant examples. In JavaFX, events get described ...