swt设置窗体居中

来源:互联网 发布:会员推广系统源码 编辑:程序博客网 时间:2024/05/17 08:50
 
shell = new Shell();
shell.setSize(
611375);
int width = shell.getMonitor().getClientArea().width;
int height = shell.getMonitor().getClientArea().height;
int x = shell.getSize().x;
int y = shell.getSize().y;
if(x > width)
{
shell.getSize().x 
= width;
}
if(y > height)
{
shell.getSize().y 
= height;
}
shell.setLocation((width 
- x) / 2, (height - y) / 2);
原创粉丝点击