简体   繁体   中英

JavaFX 2 modal window

I'm trying to create a login window with JavaFX 2 and stop execution until the user has not logged. I want something like the below:

showLoginDialog();
showMainWindow();

showLoginDialog is responsible for creating a new stage and set its parent to be the main window. It sets the stage to be modal, I tried both WINDOW_MODAL and APPLICATION_MODAL , but as soon as the login window is showed, the showMainWindow() line is called as well.

Is it possible to stop code running until the close() of the login stage is called, or something similar? Are there any tutorials showing how this can be achieved?

As Uluk said there is a JIRA issue. The issue has been closed and fixed in version 2.2 beta of JavaFX. Just use the following code if execution of the program needs to be stopped:

modalWindowStage.showAndWait();

where modalWindowStage is the stage used for showing the messagebox. If the execution needs to continue, just use the usual 'show()' method.

Jira issue exists for this http://javafx-jira.kenai.com/browse/RT-19783 .
Until that time you can call showMainWindow(); in an action of login button.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM