我正在尝试使用Opal提供的小部件。
我正在执行以下操作:
@PostConstruct
public void createControls(Composite parent){
System.out.println("PROP3");
parent.setLayout(new GridLayout(1, false));
Composite propertyContainer = new Composite(parent, SWT.NONE);
propertyContainer.setLayout(new GridLayout(1, false));
GridData gd = new GridData(GridData.FILL, GridData.FILL, true, true);
propertyContainer.setLayoutData(gd);
propertyTable = new PropertyTable(propertyContainer, SWT.NONE);
propertyTable.showButtons();
propertyTable.viewAsCategories();
propertyTable.addProperty(new PTProperty("id", "Identifier", "Description for identifier", "My id")).setCategory("General");
propertyTable.addProperty(new PTProperty("text", "Description", "Description for the description field", "blahblah...")).setCategory("General");
}
@Focus
private boolean setFocus(){
return true;
}
该代码与 a 相关联Part
,它运行并且与其他小部件没有问题,但PropertyTable
不显示。
创建的代码PropertyTable
来自他们的教程。
我在这里搞砸了什么并且PropertyTable
没有显示?