我只是想创建一个网格插件,可以让用户编辑每个单元格。我找到了 Eclipse Nebula,它似乎与我想要做的非常接近,只是我无法找到使单元格可编辑的方法。到目前为止,我有这样简单的事情:
public class SampleView2 extends ViewPart {
public SampleView2() {
}
public void createPartControl(Composite parent) {
// create Grid
Grid grid = new Grid(parent,SWT.BORDER | SWT.V_SCROLL | SWT.H_SCROLL);
grid.setHeaderVisible(true);
// create column
GridColumn col = new GridColumn(grid, 0);
col.setText("First Column");
col.setWidth(140);
// write text in row
GridItem item = new GridItem(grid, 0);
item.setText("This is my first cell"); // <--- I want the user to be able to edit this
}
此代码产生:
如您所见,我可以手动设置单元格中的文本,但我希望用户能够编辑它。