I am just starting my second JavaFX projects, and I need to know when a Stage
is being maximized. In Swing, this is fairly simple and can be accomplished by using a WindowListener/Event. However, after searching through JavaFX's Javadoc, I can't seem to find any way of listening to the state of a Stage
.
Is there any way to do this?
To find out if
Stage
minimized you can listen toiconified
property:Correspondent
maximized
property is added in the upcoming 8.0 release:You can download early access build of JDK 8 (which includes FX8) here: http://www.oracle.com/technetwork/java/javase/downloads/ea-jsp-142245.html