扩展的ExpandBar被切断

时间:2016-05-06 08:04:32

标签: java swt

Directly after this bar there are other controls

我有一个包含两个标签的对话框。 ExpandBar的标签如下所示:

Composite page = createTabItem(
                tab,
                new GridLayout(5, false),
                Messages.Title,
                UITestId.PropertiesTab);

之后我有ExpandBar

ExpandBar bar = new ExpandBar(parent, SWT.NONE);
Composite selectionArea = new Composite(bar, SWT.NONE);

添加了一些按钮之后,我最后有了这个:

ExpandItem item = new ExpandItem(bar, SWT.NONE, 0);
item.setText("Ausgabeformate auswählen");
item.setControl(selectionArea);
item.setHeight(selectionArea.computeSize(SWT.DEFAULT, SWT.DEFAULT).y);

如何让ExpandBar(如果展开的话)与下面的控件重叠。或者,如果这不起作用:我怎样才能动态地推动"扩展ExpandBar以下的控件,以便我可以看到ExpandBar内的内容。

0 个答案:

没有答案