Related questions
How to make JavaFX Slider to move in discrete steps?
I am making a GUI using JavaFx and I need sliders that only allow integers to ever be selected.
I know I can use snapToTicks, but while pulling the "knob", it can still represent a non-integer value. I would like …
Swing vs JavaFx for desktop applications
I have a very big program that is currently using SWT. The program can be run on both Windows, Mac and Linux, and it is a big desktop application with many elements.
Now SWT being somewhat old I would like …
close fxml window by code, javafx
I need to close the current fxml window by code in the controller
I know stage.close() or stage.hide() do this in fx
how to implement this in fxml? I tried
private void on_btnClose_clicked(ActionEvent actionEvent) {
Parent …