我使用TableViewer创建了一个网格。
在某些情况下,我想要隐藏TableViewer和显示消息。
这就是我创建TableViewer的方式:
gridLayout = new GridLayout();
Table table = new TableViewer(parent, SWT.MULTI | SWT.H_SCROLL | SWT.V_SCROLL | SWT.FULL_SELECTION | SWT.BORDER )
table.setLayoutData(gridLayout)
我知道如何隐藏表 - table.setVisible(false)。问题是在哪里设置消息?我没有为此创建一个textBox(SWT)。
我是否需要创建textBox(SWT)并将visible设置为false(默认情况下),并且仅当我想显示消息以将其显示为visible = true时才会生效?
答案 0 :(得分:0)
就像你说的那样。这里有一些代码更多。
// The parents layout of message and table viewer
GridLayout gridLayout = new GridLayout(2, false);
parent.setLayout(gridLayout);
// The message widget
Text message = new Text(parent, SWT.NONE);
message.setLayoutData(new GridData(GridData.GRAB_HORIZONTAL
GridData.HORIZONTAL_ALIGN_FILL));
// The table viewer
TableViewer viewer = new TableViewer(parent, SWT.MULTI | SWT.H_SCROLL | SWT.V_SCROLL | SWT.FULL_SELECTION | SWT.BORDER );
Table table = viewer.getTable();
// Layout for table
GridData gridData = new GridData();
// fill in your grid data setup here
// EX: gridData.verticalAlignemnt = GridData.FILL;
// end fill
viewer.getControl().setLayoutData(gridData);