8

我有 SWT 向导页面作为我的父 shell,为了在单击按钮时创建另一个 shell,我正在编写以下代码

Shell permissionSetShell = new Shell(Display.getCurrent().getActiveShell(), SWT.CENTER|SWT.DIALOG_TRIM|SWT.APPLICATION_MODAL);
permissionSetShell.setText(PropertyClass.getPropertyLabel(QTLConstants.PERMISSION_SET_COLUMN_LABEL));

// Add shell to the center of parent wizard
permissionSetShell.setLayout(componentsRenderer.createGridLayout(1, false, 0, 5, 0, 0));    
Monitor primary = Display.getCurrent().getPrimaryMonitor ();
Rectangle bounds = primary.getBounds ();
Rectangle rect = Display.getCurrent().getActiveShell().getBounds ();
int x = bounds.x + (bounds.width - rect.width) / 2;
int y = bounds.y + (bounds.height - rect.height)/2;              
permissionSetShell.setLocation (x, y);

但是作为子外壳意味着这个外壳没有放置在作为父外壳的 SWT 向导的中心,为什么?

4

4 回答 4

7
Rectangle screenSize = display.getPrimaryMonitor().getBounds();
shell.setLocation((screenSize.width - shell.getBounds().width) / 2, (screenSize.height - shell.getBounds().height) / 2);
于 2013-10-18T05:59:41.067 回答
3

如果您正在编写对话框或子组件,您可能希望使用 getParent 而不是询问主监视器的显示,以便窗口位于当前屏幕的中心以进行多个监视器设置。

Rectangle parentSize = getParent().getBounds();
Rectangle shellSize = shell.getBounds();
int locationX = (parentSize.width - shellSize.width)/2+parentSize.x;
int locationY = (parentSize.height - shellSize.height)/2+parentSize.y;
shell.setLocation(new Point(locationX, locationY));
于 2016-12-03T21:14:24.807 回答
0

我刚刚遇到了同样的问题。我得到的解决方案有点不同。这可能会帮助其他人解决同样的问题。上下文是一个外壳 (hoverShell),它在父外壳 (shell) 上悬停几秒钟,显示一条消息。

    private void displayMessage(Shell shell, String message) {
      Shell hoverShell = new Shell(shell, SWT.ON_TOP);
      hoverShell.setLayout(new FillLayout());
      Label messageLabel = new Label(hoverShell, SWT.NONE);
      messageLabel.setText(message);
      Point shellLocation = shell.getLocation();
      hoverShell.pack();
      hoverShell.setLocation(shellLocation.x + (shell.getSize().x / 2) - (hoverShell.getSize().x / 2), shellLocation.y + 40);
      hoverShell.open();
      Display.getDefault().timerExec(2000, new Runnable() {

        @Override
        public void run() {
            hoverShell.dispose();
        }
    });
}

简而言之,这是以下公式:

child_location.x = parent_location.x + .5*(parent_width.x) - .5*(child_width.x)

如果你想要 y 那么我相信它是完全相同的。可能取决于是否计算了窗口的上边框。

于 2019-11-21T10:12:13.527 回答
0

我认为最好的方法是对此类对话框使用样式 SWT.SHEET。

于 2017-10-16T08:48:13.543 回答