有没有办法将扩展栏添加到jframe或jpanel上,而无需使用代码创建每个组件(使用已创建的组件)。
以下是我使用的代码:(http://www.eclipse.org/swt/snippets/#expandbar)
Display display = new Display ();
Shell shell = new Shell (display);
shell.setLayout(new FillLayout());
shell.setText("ExpandBar Example");
ExpandBar bar = new ExpandBar (shell, SWT.V_SCROLL);
我尝试将扩展栏添加到面板,以及尝试将显示和外壳添加到面板,但不起作用。
请帮忙。 感谢