SWT窗口居中的设置

函数如下:

public static void setShellCenter(Shell shell)

{

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

}

你可能感兴趣的:(shell,SWT)