Upload page content

You can upload content for the page named below. If you change the page name, you can also upload content for another page. If the page name is empty, we derive the page name from the file name.

File to load page content from
Page name
Comment

Locked History Actions

JavaFX/FocusControl

フォーカスのコントロール

フォーカスの移らないコントロール

ボタンやスライダをマウス操作しても、そこにフォーカスが移らないようにすることができる。

Button button = new Button() {
  @Override public void requestFocus() {}
};
Slider slider = new Slider() {
  @Override public void requestFocus() {}
};

外からファイルをドロップするとウインドウフォーカスが失われる

例えばエクスプローラからアプリにファイルをドロップすると、そのアプリからフォーカスが失われてしまう。 これを強制的にアプリに移す。

// ドロップ終了後、そのステージにフォーカスをリクエストする。
stage.requestFocus();

参考