2

我如何使用 JFace API 设置不可调整大小的窗口。考虑下面创建应用程序窗口的代码。我找不到任何方法将窗口设置为在 shell 对象或应用程序窗口父级上不可调整大小。有什么我想念的吗?

public class Application extends ApplicationWindow
{
    public Application()
    {
        super(null);
    }

    protected Control createContents(Composite parent)
    {
        prepareShell();

        return parent;
    }

    protected void prepareShell() {
        Shell shell = getShell();
        shell.setSize(450, 300);
    }

    public static void main(String[] args)
    {
        Application app = new Application();

        app.setBlockOnOpen(true);
        app.open();

        Display.getCurrent().dispose();
    }
}

谢谢你的帮助。

4

1 回答 1

9

据我了解,您希望在创建 shell 之前设置 shell 样式位。

只需添加

@Override
public void create() {
    setShellStyle(SWT.DIALOG_TRIM);
    super.create();
}

到你的班级,这样做。这省略了 SWT.RESIZE 样式位,因此防止调整大小..

于 2011-03-04T10:28:58.920 回答