我有一个包含两个标签的对话框。 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
内的内容。