Event when window/stage lost focus
Asked Answered
O

1

13

How can I run a piece of code (or more exactly: close the stage) when the JavaFX stage lost it's focus?

For example in Dropbox or Chrome: if you click the tray icon, a small window opens. If you click anywhere on the screen now, the window closes. Exactly this is the behaviour I want to create in my JavaFX application.

I searched a long time already for a solution, but couldn't find one...
So, I'm looking for something something like this:

stage.addEventHandler(EventType.FOCUS_LOST, new EventHandler() { /*...*/ } );


Thank you for helping me out!

Oberstone answered 4/6, 2014 at 13:37 Comment(0)
K
25

Add a listener to stage.focusedProperty().

primaryStage.focusedProperty().addListener(new ChangeListener<Boolean>()
{
  @Override
  public void changed(ObservableValue<? extends Boolean> ov, Boolean onHidden, Boolean onShown)
  {
    <Your code here>
  }
});
Kordofanian answered 4/6, 2014 at 15:35 Comment(1)
just a note: t is an old value, t1 is a new one. so, for this case t stands for onHidden, t1 - onShownSeasick

© 2022 - 2024 — McMap. All rights reserved.