JInternalFrameを一番手前に表示
Total: 12070
, Today: 5
, Yesterday: 4
Posted by aterai at
Last-modified:
Summary
JLayeredPane
を使って、常に一番手前に表示されるJInternalFrame
を作成します。
Screenshot
Advertisement
Source Code Examples
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, KotlinExplanation
JDesktopPane
はJLayeredPane
を継承しているため、JInternalFrame
を追加するレイヤーを指定可能です。このサンプルでは、タイトルがAlwaysOnTop
のJInternalFrame
をJLayeredPane.MODAL_LAYER
の一つ上に設定し、他のJInternalFrame
(ここでは後から追加するJInternalFrame
)より常に手前に表示されるように設定しています。