我试图在我的 GUI 的第二列(任务名称)中插入 jface TreeViewer,但它与第一列(任务 ID)合并。那么我怎样才能让控件将其从一列转移到第二列。
问问题
237 次
1 回答
1
实现这一点的最简单方法GridLayout
是插入 dummy Label
s,它们占据您“前面”的空格TreeViewer
:
public static void main(String[] args)
{
final Display display = new Display();
final Shell shell = new Shell(display);
shell.setText("StackOverflow");
shell.setLayout(new GridLayout(3, true));
/* Top row */
new Button(shell, SWT.PUSH).setText("Button");
new Label(shell, SWT.NONE);
new Label(shell, SWT.NONE);
/* Middle row */
new Label(shell, SWT.NONE);
new Button(shell, SWT.PUSH).setText("Button");
new Label(shell, SWT.NONE);
/* Bottom row */
new Label(shell, SWT.NONE);
new Label(shell, SWT.NONE);
new Button(shell, SWT.PUSH).setText("Button");
shell.pack();
shell.open();
while (!shell.isDisposed())
{
if (!display.readAndDispatch())
{
display.sleep();
}
}
display.dispose();
}
产生这个:
于 2013-10-10T09:03:58.897 回答