概要

JLayeredPaneを使って、常に一番手前に表示されるJInternalFrameを作成します。

サンプルコード

JInternalFrame iframe = new JInternalFrame(
  "AlwaysOnTop", // title
  true,  // resizable
  false, // closable
  true,  // maximizable
  true); // iconifiable
iframe.setSize(180, 180);
desktop.add(iframe, Integer.valueOf(JLayeredPane.MODAL_LAYER + 1));
iframe.setVisible(true);
View in GitHub: Java, Kotlin

解説

JDesktopPaneJLayeredPaneを継承しているため、JInternalFrameを追加するレイヤーを指定可能です。このサンプルでは、タイトルがAlwaysOnTopJInternalFrameJLayeredPane.MODAL_LAYERの一つ上に設定し、他のJInternalFrame(ここでは後から追加するJInternalFrame)より常に手前に表示されるように設定しています。

参考リンク

コメント