0

我正在尝试使用具有固定大小内容的滚动合成和可滚动内容的滚动合成显示状态信息下方的标签。由于我希望控件与父级一起调整大小,因此我在其父级上使用了 GridLayout。但是我遇到了滚动复合的滚动条和标签控件的定位问题。即,除非我将scrolledcomposite的网格数据属性设置为,否则滚动不起作用

grabExcessVerticalspace = true

如果我允许 scrolledcomposite 抓住多余的垂直空间,由于它们之间的空间,标签不会出现在 scrolledcomposite 下方。

public class Snippet5 {

  public static void main(String[] args) {
    Display display = new Display();
    Shell shell = new Shell(display);
    shell.setLayout(new GridLayout(1, true));

    // this button is always 400 x 400. Scrollbars appear if the window is
    // resized to be too small to show part of the button
    ScrolledComposite c1 = new ScrolledComposite(shell, SWT.BORDER | SWT.H_SCROLL | SWT.V_SCROLL);
    Button b1 = new Button(c1, SWT.PUSH);
    b1.setText("fixed size button");
    b1.setSize(400, 400);
    c1.setAlwaysShowScrollBars(true);
    c1.setLayoutData(new GridData(SWT.LEFT, SWT.TOP, true, true));
    c1.setContent(b1);

    Label l = new Label(shell, SWT.BORDER);
    l.setText("button clicked");
    GridData layoutData = new GridData(SWT.LEFT, SWT.TOP, true, false);
    layoutData.heightHint = 30;
    layoutData.widthHint  = 400;
    l.setLayoutData(layoutData);

    shell.setSize(600, 300);
    shell.open();
    while (!shell.isDisposed()) {
      if (!display.readAndDispatch())
        display.sleep();
    }
    display.dispose();
  }
}

任何帮助使标签恰好出现在滚动的合成下方(修剪空间)并进行滚动工作表示赞赏。

编辑:

预期行为:

  1. 要被标签抓取的额外垂直空间。
  2. 当重新调整外壳大小时无法完全查看内容时,scrolledcomposite 应启用垂直滚动。

在此处输入图像描述

4

1 回答 1

0

您需要将 的布局数据设置ScrolledCompositeFILL

new GridData( SWT.FILL, SWT.FILL, true, true );

这样,ScrolledComposite 将占用网格单元格的可用空间。

于 2016-09-13T08:32:08.687 回答