我有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);
但是因为子shell意味着这个shell没有放在SWT向导的中心,这是父shell的原因吗?
答案 0 :(得分:7)
Rectangle screenSize = display.getPrimaryMonitor().getBounds();
shell.setLocation((screenSize.width - shell.getBounds().width) / 2, (screenSize.height - shell.getBounds().height) / 2);
答案 1 :(得分: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));
答案 2 :(得分:0)
我认为最好的方法是使用样式SWT.SHEET进行此类对话。
答案 3 :(得分:0)
我只是遇到了同样的问题。我得到的解决方案有些不同。这可能会帮助其他人解决相同的问题。上下文是一个外壳(hoverShell),它在父(外壳)上悬停了几秒钟,显示一条消息。
stringr::str_replace_all(c("2/22/2012"), "^2.+", "February"
简而言之,这是以下公式:
child_location.x = parent_location.x + .5 *(parent_width.x)-.5 *(child_width.x)
如果您要y,那是我所相信的。可能取决于是否计算了窗口的顶部边框。