分享

SWT中设定TABLE行的高度

 nacy2012 2015-10-13
通过捕获SWT.MeasureItem事件来定制单元格的高度和宽度,具体内容可参看原文Custom Drawing Table and Tree Items,代码演示如下:

Display display = new Display();
Shell shell 
= new Shell(display);
shell.setBounds(
1010200250);

final Table table = new Table(shell, SWT.NONE);
table.setBounds(
1010150200);
table.setLinesVisible(
true);

final int rowHeight =30;
        
for (int = 0< 5i++{
    
new TableItem(table, SWT.NONE).setText("item " + i);
}
    
table.addListener(SWT.MeasureItem, 
new Listener() {
    
public void handleEvent(Event event) {
        event.height 
=rowHeight;
    }
});
        
shell.open();
while (!shell.isDisposed()) {
    
if (!display.readAndDispatch())
    display.sleep();
}
display.dispose();

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多