这是我第一次使用SWT,并且正在制作一个如下的登录shell:

loginshell = new Shell(swtFrameDisp,SWT.ON_TOP);
        loginshell.setLayout(new GridLayout(1, false));
        loginshell
                .setSize(textBoxHeight + 100, textBoxHeight + 100);

        GridData data = new GridData(SWT.FILL, SWT.BEGINNING, true,
                false);

        // Center loginscreen!
        Monitor primary = swtFrameDisp.getPrimaryMonitor();
        Rectangle bounds = primary.getBounds();
        Rectangle rect = loginshell.getBounds();
        int x = bounds.x + (bounds.width - rect.width) / 2;
        int y = bounds.y + (bounds.height - rect.height) / 2;
        loginshell.setLocation(x, y);

        Label label = new Label(loginshell, SWT.NONE);
        label.setLayoutData(data);
        label.setText("Login to Messupport.com");

        // text field settings
        userNameField = new Text(loginshell, SWT.BORDER);
        userNameField.setLayoutData(data);
        userNameField.setTextLimit(100);
        userNameField.setText("username");

        passwordField = new Text(loginshell, SWT.PASSWORD
                | SWT.BORDER);
        passwordField.setLayoutData(data);
        passwordField.setBounds(100, 50, 100, 20);
        passwordField.setTextLimit(100);
        Button bn = new Button(loginshell, SWT.FLAT);
        bn.setLayoutData(data);
        bn.setText("Login");
        loginshell.setDefaultButton(bn);


但是,“文本”字段和我的按钮太小,我不知道为什么。但是有人能启发我吗?


我已经尝试使用setBounds,但是没有结果。因此,它可能与布局有关。我想知道如何解决这个问题,谢谢。

最佳答案

您为所有控件使用相同的GridData对象。您必须为每个对象创建一个新的GridData,因为该对象用于存储控件的布局信息。

GridData JavaDoc:


注意:不要重用GridData对象。复合中的每个控件
由GridLayout管理的必须具有唯一的GridData对象。

10-01 05:56