2

我正在尝试像这样配置一个对话框窗口:

    @Override
protected Control createDialogArea(Composite parent) {


    GridLayout dialogAreaLayout = new GridLayout();
    dialogAreaLayout.numColumns = 2;
    parent.setLayout(dialogAreaLayout);


    GridData gridData = new GridData();
    gridData.grabExcessHorizontalSpace = true;
    gridData.horizontalAlignment = GridData.FILL;
    gridData.minimumWidth = 300;

    // the label in the first row should span across both columns
    gridData.horizontalSpan = 2;

    Label headlineLabel = new Label(parent, SWT.NONE);
    headlineLabel.setText("example test");
    headlineLabel.setLayoutData(gridData);

    // the rest should be ordered in two columns
    gridData.horizontalSpan = 1;

    companyLabel = new Label(parent, SWT.NONE);
    companyLabel("company");

    companyTextfield = new Text(parent, SWT.BORDER);
    companyTextfield(gridData);

...

我想要完成的是第一行中的一个标签,它跨越两列,并让以下字段每行成对排序。我得到的是,标签(应该留在第二行)就在第一行,就像标签不会跨越两列一样。谁能看到,我做错了什么?

再次感谢!

4

1 回答 1

2

将 layoutData 设置为 headerLabel 后,将 Horizo​​ntalSpan 设置为 1。您需要为每个 SWT 小部件创建一个新的 LayoutData 对象。设置后无法重复使用。

于 2012-08-26T08:32:46.903 回答