Swing/CloseInternalFrame のバックアップ(No.11)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/CloseInternalFrame へ行く。
- 1 (2008-05-08 (木) 18:58:35)
- 2 (2008-09-12 (金) 13:15:10)
- 3 (2009-02-27 (金) 16:33:24)
- 4 (2011-04-21 (木) 16:02:00)
- 5 (2013-04-23 (火) 17:22:53)
- 6 (2013-07-26 (金) 01:13:13)
- 7 (2014-11-01 (土) 00:46:09)
- 8 (2014-11-18 (火) 01:37:53)
- 9 (2015-01-01 (木) 21:41:31)
- 10 (2016-04-28 (木) 15:24:37)
- 11 (2017-08-02 (水) 15:29:11)
- 12 (2018-08-07 (火) 14:27:11)
- 13 (2020-08-08 (土) 16:29:42)
- 14 (2021-12-31 (金) 01:43:01)
- 15 (2022-08-20 (土) 22:15:25)
- 16 (2022-10-04 (火) 15:53:47)
- category: swing folder: CloseInternalFrame title: JInternalFrameを閉じる tags: [JInternalFrame, JDesktopPane, DesktopManager] author: aterai pubdate: 2008-05-05T20:51:51+09:00 description: 選択中のJInternalFrameをDesktopManagerなどを使用して外部から閉じる(JDesktopPaneから除去する)方法をテストします。 image:
概要
選択中のJInternalFrame
をDesktopManager
などを使用して外部から閉じる(JDesktopPane
から除去する)方法をテストします。
Screenshot
Advertisement
サンプルコード
closeSelectedFrameAction1 = new AbstractAction() {
@Override public void actionPerformed(ActionEvent e) {
JInternalFrame f = desktop.getSelectedFrame();
if (f != null) {
desktop.getDesktopManager().closeFrame(f);
}
}
};
View in GitHub: Java, KotlincloseSelectedFrameAction2 = new AbstractAction() {
@Override public void actionPerformed(ActionEvent e) {
JInternalFrame f = desktop.getSelectedFrame();
if (f != null) {
f.doDefaultCloseAction();
}
}
};
closeSelectedFrameAction3 = new AbstractAction() {
@Override public void actionPerformed(ActionEvent e) {
try {
JInternalFrame f = desktop.getSelectedFrame();
if (f != null) {
f.setClosed(true);
}
} catch (PropertyVetoException ex) {
ex.printStackTrace();
}
}
};
disposeSelectedFrameAction = new AbstractAction() {
@Override public void actionPerformed(ActionEvent e) {
JInternalFrame f = desktop.getSelectedFrame();
if (f != null) {
f.dispose();
}
}
};
解説
上記のサンプルでは、選択されているJInternalFrame
をツールバーのボタンやEscキー(OS
がWindows
の場合のデフォルトは、Ctrl+F4)で閉じることができます。
RED
JInternalFrame#dispose
メソッドを使用- 閉じた後、他のフレームに選択状態が移動しない
GREEN
DesktopManager#closeFrame
メソッドを使用
BLUE
JInternalFrame#doDefaultCloseAction
メソッドを使用
YELLOW
JInternalFrame#setClosed(true)
メソッドを使用
JDK 1.5
+ WindowsLookAndFeel
では、JInternalFrame
を閉じたとき、アイコン化されているJInternalFrame
には選択状態は移動しません。
参考リンク
- <Swing Dev> 8 Review request for 8012004: JINTERNALFRAME NOT BEING FINALIZED AFTER CLOSING
- Bug ID: 4759312 JInternalFrame Not Being Finalized After Closing