SWT文本字段和按钮太小

时间:2013-12-06 14:48:52

标签: java eclipse button swt

这是我第一次使用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);

但是,Text字段和我的按钮太小,我不知道为什么。但任何人都可以启发我吗? enter image description here

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

1 个答案:

答案 0 :(得分:1)

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

来自GridData JavaDoc:

  

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