How to set lines visible in SWT table, including widgets in cells?
问题 I created a table with SWT and I included SWT widgets such as Label, Text in the table cells using TableEditor. But now my problem is, the outlines of the table cells are not visible now. I want to make visible all the borders of columns and rows. How to do it? Setting table.setLinesVisible(true) is not a success! Table table = new Table(detailArea, SWT.BORDER | SWT.MULTI); table.setLinesVisible(true); for (int i = 0; i < 4; i++) { TableColumn column = new TableColumn(table, SWT.NONE); column