我的网页上有一些Group
个。在组中,我放置了一些带有不同文本的标签。
我希望所有组都具有相同的大小。我该怎么做? (我尝试了setSize
功能,但它对我不起作用。)
答案 0 :(得分:6)
以下代码可以满足您的需求。诀窍包括两部分:
Shell
)使用GridLayout
,其中每列的宽度相同GridData
告诉每个Group
占据父级的整个高度(Shell
)。public class StackExample
{
public static void main(String[] args)
{
Display display = Display.getDefault();
final Shell shell = new Shell(display);
shell.setLayout(new GridLayout(3, true));
shell.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
for(int i = 0; i < 3; i++)
{
createGroup(shell, i);
}
shell.pack();
shell.open();
while (!shell.isDisposed())
{
if (!display.readAndDispatch())
display.sleep();
}
display.dispose();
}
private static void createGroup(Shell parent, int index)
{
Group group = new Group(parent, SWT.NONE);
group.setText("Group " + index);
group.setLayout(new GridLayout(1, false));
group.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
for(int i = 0; i < index + 1; i++)
{
String text = "";
for(int j = 0; j < index + 1; j++)
{
text += "text";
}
Label label = new Label(group, SWT.NONE);
label.setText(text);
label.setLayoutData(new GridData(SWT.FILL, SWT.BEGINNING, true, false));
}
}
}
以下是两个屏幕截图:
最小尺寸:
增加窗口大小时: