JavaFX application still running after close

后端 未结 8 1153
长发绾君心
长发绾君心 2021-01-04 00:25

I\'m having problem to close my javaFX application, when I click the close button from my stage, my application disappears but if I look for it in my task manager my applica

8条回答
  •  执笔经年
    2021-01-04 01:18

    Just a note: Try checking if you use

    Platform.setImplicitExit(false);
    

    Had a similar problem and overflowing my tasks. The above line will not make the stage close, it will hide it.

提交回复
热议问题