SWT 表:自动调整所有列的大小

2022-09-04 01:02:37

Qt解决方案是一个单一的调用来调整ColumnsToContent(),在.NET中可以使用TextRenderer.MeasureText(),JTable可以使用AUTO_RESIZE_ALL_COLUMNS

在 SWT 中,有没有办法在填充列后以编程方式调整列的大小?

调用返回相同的值,从而忽略列中剩余的字符。
TableColumn有,但是如何获得当前内容的大小提示,同时考虑到字体等?computeSize(SWT.DEFAULT, SWT.DEFAULT)setWidth()


答案 1

解决方式:

private static void resizeColumn(TableColumn tableColumn_)
{
    tableColumn_.pack();

}
private static void resizeTable(Table table_)
{
    for (TableColumn tc : table.getColumns())
        resizeColumn(tc);
}

答案 2

在许多情况下,表条目在运行时会更改,以反映数据模型中的更改。向数据模型添加条目也需要调整列的大小,但在我的情况下,在修改模型后调用.pack()并不能完全解决问题。在带有装饰的 particolar 中,最后一个条目永远不会调整大小。此接缝是由于异步表查看器更新。这个截图解决了我的问题:

public class LabelDecoratorProvider extends DecoratingStyledCellLabelProvider {

    public LabelDecoratorProvider(IStyledLabelProvider labelProvider,  
        ILabelDecorator decorator, IDecorationContext decorationContext) {
        super(labelProvider, decorator, decorationContext);
    }

    @Override
    public void update(ViewerCell cell) {
        super.update(cell);
        if (TableViewer.class.isInstance(getViewer())) {
            TableViewer tableViewer = ((TableViewer)getViewer());
            Table table = tableViewer.getTable();
            for (int i = 0, n = table.getColumnCount(); i < n; i++)
                table.getColumn(i).pack();
        }
    }
}

推荐