为组SWT设置固定大小

时间:2012-11-25 08:15:53

标签: java swt

我的网页上有一些Group个。在组中,我放置了一些带有不同文本的标签。 我希望所有组都具有相同的大小。我该怎么做? (我尝试了setSize功能,但它对我不起作用。)

1 个答案:

答案 0 :(得分:6)

以下代码可以满足您的需求。诀窍包括两部分:

  • 相同宽度:父级(在此示例中为Shell)使用GridLayout,其中每列的宽度相同
  • 相同的高度:我们使用GridData告诉每个Group占据父级的整个高度(Shell)。

public class StackExample
{
    public static void main(String[] args)
    {
        Display display = Display.getDefault();
        final Shell shell = new Shell(display);
        shell.setLayout(new GridLayout(3, true));
        shell.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));

        for(int i = 0; i < 3; i++)
        {
            createGroup(shell, i);
        }

        shell.pack();
        shell.open();
        while (!shell.isDisposed())
        {
            if (!display.readAndDispatch())
                display.sleep();
        }
        display.dispose();
    }

    private static void createGroup(Shell parent, int index)
    {
        Group group = new Group(parent, SWT.NONE);
        group.setText("Group " + index);
        group.setLayout(new GridLayout(1, false));
        group.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));

        for(int i = 0; i < index + 1; i++)
        {
            String text = "";
            for(int j = 0; j < index + 1; j++)
            {
                text += "text";
            }

            Label label = new Label(group, SWT.NONE);
            label.setText(text);
            label.setLayoutData(new GridData(SWT.FILL, SWT.BEGINNING, true, false));
        }
    }
}

以下是两个屏幕截图:

最小尺寸:

enter image description here

增加窗口大小时:

enter image description here