Swing 中设置模态窗体和启动位置

系统 1717 0

关于 Modal 窗体


在 Swing 中只有 JDialog 可以设置为 Modal 窗体,其方法可以在构造函数(例如“JDialog(Frame owner, boolean modal)”)中传参数,也可以用 setModal(boolean b) 方法设定,这个方法是从 Dialog 类继承的。

在 JFrame 类中,无法通过如 JDialog 的方法设置 Modal 窗体,在 CSDN 有朋友尝试通过在 windowDeactivated() 时 requestFocus() 来模拟 Modal 窗体,代码如下:


public class MyModalFrame extends JFrame implements WindowListener ... {
private JFrameframe = null ;
private boolean modal = false ;
private Stringtitle = null ;

public MyModalFrame() ... {
this ( null , false );
}


public MyModalFrame(JFrameframe) ... {
this (frame, false );
}


public MyModalFrame(JFrameframe, boolean modal) ... {
this (frame,modal, "" );
}


public MyModalFrame(JFrameframe, boolean modal,Stringtitle) ... {
super (title);
this .frame = frame;
this .modal = modal;
this .title = title;
this .init();
}


private void init() ... {
if (modal)
frame.setEnabled(
false );
this .addWindowListener( this );
}


public void windowOpened(WindowEventwindowEvent) ... {
}


public void windowClosing(WindowEventwindowEvent) ... {
if (modal)
frame.setEnabled(
true );
}


public void windowClosed(WindowEventwindowEvent) ... {
}


public void windowIconified(WindowEventwindowEvent) ... {
}


public void windowDeiconified(WindowEventwindowEvent) ... {
}


public void windowActivated(WindowEventwindowEvent) ... {
}


public void windowDeactivated(WindowEventwindowEvent) ... {
if (modal)
this .requestFocus();
}

}

关于窗体启动位置

有时候想要让窗体启动后在屏幕中间启动,有种比较复杂的方法:

DimensionscreenSize = Toolkit.getDefaultToolkit().getScreenSize();
Dimensionsize
= frame.getSize();
int x = (screenSize.width - size.width) / 2 ;
int y = (screenSize.height - size.height) / 2 ;
frame.setLocation(x,y);

Java 1.4 版之后可以用一条语句代替:

frame.setLocationRelativeTo(null);


Java API 文档中对此方法描述如下:public void setLocationRelativeTo(Component c)
设置此窗口相对于指定组件的位置。如果此组件当前未显示,或者 c 为 null,则此窗口位于屏幕的中央。 如果该组件的底部在视线以外,则将该窗口放置在 Component 最接近窗口中心的一侧。因此,如果 Component 在屏幕的右部,则 Window 将被放置在左部,反之亦然。

在应用此方法时应该注意的一点是, setSize() 方法一定要放在 setLocationRelativeTo() 之前 ,否则只有窗体左上角是正对屏幕或所属组件中心,整个窗体看起来会是偏向右下角的。

Swing 中设置模态窗体和启动位置


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论