这是我想要实现的,使用SWT:
为此,我尝试使用RowLayout
作为嵌套Composite
,根据可用空间包装复合控件。以下代码完美无缺:
public class RowLayoutExample {
public static void main(String[] args) {
Display display = new Display();
Shell shell = new Shell(display);
shell.setText("SWT RowLayout test");
shell.setLayout(new RowLayout(SWT.HORIZONTAL));
for (int i = 0; i < 10; i++) {
new Label(shell, SWT.NONE).setText("Label " + i);
}
shell.setSize(400, 250);
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch())
display.sleep();
}
display.dispose();
}
}
显示(请注意下一行上最后一个标签的精美包装 - 同样,在shell调整大小时,组件包装到可用的水平空间中):
当我这样做时,改为:
public class RowLayoutExample {
public static void main(String[] args) {
Display display = new Display();
Shell shell = new Shell(display);
shell.setText("SWT RowLayout test");
shell.setLayout(new RowLayout(SWT.HORIZONTAL));
Composite comp = new Composite(shell, SWT.NONE);
comp.setLayout(new RowLayout(SWT.HORIZONTAL));
for (int i = 0; i < 10; i++) {
new Label(comp, SWT.NONE).setText("Label " + i);
}
shell.setSize(400, 250);
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch())
display.sleep();
}
display.dispose();
}
}
我有以下行为。如果我调整外壳的大小,标签不会包装成多行。
在下图中,我们可以看到复合扩展出shell客户端区域,而不是包装到第二行。调整shell大小不会影响这种错误行为。
我使用的是以下SWT版本:
<dependency>
<groupId>org.eclipse.swt</groupId>
<artifactId>org.eclipse.swt.cocoa.macosx.x86_64</artifactId>
<version>4.3</version>
</dependency>
那么,为什么第二种情况不起作用?此外,是否可以将GridLayout
用于shell,但RowLayout
用于此shell的子级?
答案 0 :(得分:4)
以下是使用GridLayout
作为Shell
布局的示例:
public static void main(String[] args) {
Display display = new Display();
Shell shell = new Shell(display);
shell.setText("SWT RowLayout test");
shell.setLayout(new GridLayout());
Composite comp = new Composite(shell, SWT.NONE);
comp.setLayout(new RowLayout(SWT.HORIZONTAL));
comp.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
for (int i = 0; i < 10; i++) {
new Label(comp, SWT.NONE).setText("Label " + i);
}
shell.setSize(400, 250);
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch())
display.sleep();
}
display.dispose();
}
产生与第一个例子相同的结果。
&#34;技巧&#34;是使用GridData
将GridLayout
设置为元素的子元素。