码迷,mamicode.com
首页 > 其他好文 > 详细

JFrame居中

时间:2014-08-18 17:59:02      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:使用   io   size   ef   on   sp   c   height   

//居中设置
Toolkit toolkit = Toolkit.getDefaultToolkit();
Dimension screenSize = toolkit.getScreenSize();
int x = (screenSize.width - frame.getWidth())/ 2;
int y= (screenSize.height - frame.getHeight())/ 2;
frame.setLocation(x , y);

 

JDK1.4后提供方法,建议使用

frame.setLocationRelativeTo(owner); 

如果是主窗体,则

 frame.setLocationRelativeTo(null);

JFrame居中,布布扣,bubuko.com

JFrame居中

标签:使用   io   size   ef   on   sp   c   height   

原文地址:http://www.cnblogs.com/kingsy/p/3919758.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!