SWT/Jface Shell 屏幕居中的三种方法


对话框居中的3种方法:

1.

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);


2.
Rectangle bounds = Display.getDefault().getPrimaryMonitor().getBounds();
Rectangle rect = shell.getBounds();
int x = bounds.x + (bounds.width - rect.width) / 2;
int y = bounds.y + (bounds.height - rect.height) / 2;
shell.setLocation(x, y);

 

3.

int screenH = Toolkit.getDefaultToolkit().getScreenSize().height;
int screenW = Toolkit.getDefaultToolkit().getScreenSize().width;
int shellH = shell.getBounds().height;
int shellW = shell.getBounds().width;
if(shellH > screenH)
shellH = screenH;
if(shellW > screenW)
shellW = screenW;
shell.setLocation(((screenW - shellW) / 2), ((screenH - shellH) / 2));


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM