我需要一个布局,其中2个compsites可以一起坐在一起。 第一个复合材料的高度应大于第二个复合材料的高度。我不能使用null布局。我必须使用一些布局管理器。 每当我调整外壳大小时,复合材料也应调整大小。哪种布局可以管理这个?请参阅随附的屏幕截图。这是我需要的那种输出。![有谁看到我附在这里的图像?我无法看到。
我不知道为什么没有出现屏幕截图。我在下面添加了代码。请试试。
package views;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.layout.FormLayout;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.graphics.Rectangle;
import org.eclipse.swt.SWT;
public class NewComposite extends org.eclipse.swt.widgets.Composite {
private Composite composite1;
private Composite composite2;
/**
* Auto-generated main method to display this
* org.eclipse.swt.widgets.Composite inside a new Shell.
*/
public static void main(String[] args) {
showGUI();
}
/**
* Overriding checkSubclass allows this class to extend org.eclipse.swt.widgets.Composite
*/
protected void checkSubclass() {
}
/**
* Auto-generated method to display this
* org.eclipse.swt.widgets.Composite inside a new Shell.
*/
public static void showGUI() {
Display display = Display.getDefault();
Shell shell = new Shell(display);
NewComposite inst = new NewComposite(shell, SWT.NULL);
Point size = inst.getSize();
shell.setLayout(new FillLayout());
shell.layout();
if(size.x == 0 && size.y == 0) {
inst.pack();
shell.pack();
} else {
Rectangle shellBounds = shell.computeTrim(0, 0, size.x, size.y);
shell.setSize(shellBounds.width, shellBounds.height);
}
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch())
display.sleep();
}
}
public NewComposite(org.eclipse.swt.widgets.Composite parent, int style) {
super(parent, style);
initGUI();
}
private void initGUI() {
try {
this.setLayout(null);
this.setSize(492, 304);
{
composite1 = new Composite(this, SWT.BORDER_SOLID);
GridLayout composite1Layout = new GridLayout();
composite1Layout.makeColumnsEqualWidth = true;
composite1.setLayout(composite1Layout);
composite1.setBounds(0, 0, 492, 232);
composite1.setBackground(Display.getCurrent().getSystemColor(SWT.COLOR_CYAN));
}
{
composite2 = new Composite(this, SWT.BORDER_SOLID);
GridLayout composite2Layout = new GridLayout();
composite2Layout.makeColumnsEqualWidth = true;
composite2.setLayout(composite2Layout);
composite2.setBounds(0, 232, 492, 72);
composite2.setBackground(Display.getCurrent().getSystemColor(SWT.COLOR_WHITE));
}
this.layout();
} catch (Exception e) {
e.printStackTrace();
}
}
}
答案 0 :(得分:0)
您正在使用布局管理器错误 - 您要为每个子复合(GridLayout
,composite1
设置composite2
,但您要设置null
布局他们的父母(this
)。它是管理其子项的大小和位置的父组件。因此,将GridLayout
设置为this
并将每个孩子的layoutData
设置为相应配置的GridData
。如何配置,请参阅Javadoc。它涉及为grabExcessVerticalSpace
设置SWT.FILL
和使用verticalAlignment
。