将标签放在顶部SWT中

时间:2013-09-26 06:04:19

标签: java swt

我在gridLayout中放置了两个标签。标签1只是一个字,标签2是4行。 由于标签2是4行,标签1是垂直居中的,但我希望它垂直位于顶部。

以下是我使用的标签设置。

Label label = new Label(parent, SWT.WRAP);
GridData gd = new GridData(GridData.HORIZONTAL_ALIGN_BEGINNING, GridData.VERTICAL_ALIGN_BEGINNING, false, false);
    gd.widthHint = 200;
label.setLayoutData(gd);

请帮我将标签对齐放在标签1的中心而不是标签1的中心

1 个答案:

答案 0 :(得分:1)

如果您查看GridData.HORIZONTAL_ALIGN_BEGINNINGGridData.VERTICAL_ALIGN_BEGINNING的Javadoc,您会看到它说:

  

不推荐。请改用新的GridData( SWT.BEGINNING ,int,boolean,boolean)。

  

不推荐。使用新的GridData(int, SWT.BEGINNING ,布尔值,布尔值)。

始终使用SWT对齐常量:

public static void main(String[] args)
{
    Display display = Display.getDefault();
    final Shell shell = new Shell(display);
    shell.setText("StackOverflow");
    shell.setLayout(new GridLayout(2, false));

    Label left = new Label(shell, SWT.BORDER);
    left.setText("LEFT");
    Label right = new Label(shell, SWT.BORDER);
    right.setText("RIGHT\nRIGHT\nRIGHT\nRIGHT");

    GridData data = new GridData(SWT.BEGINNING, SWT.BEGINNING, false, false);
    left.setLayoutData(data);
    data = new GridData(SWT.FILL, SWT.FILL, true, true);
    right.setLayoutData(data);

    shell.pack();
    shell.open();
    while (!shell.isDisposed())
    {
        if (!display.readAndDispatch())
            display.sleep();
    }
    display.dispose();
}

看起来像这样:

enter image description here