2013-06-12 106 views
0

如何在SWT列表中顯示行號?我沒有提到有關顯示StyledText行號的一些帖子,但它沒有幫助我。SWT列表顯示行號

在此先感謝!

回答

2

作爲替代方案,你可以使用一個Table 2列無標題:

public static void main(String[] args) 
{ 
    Display display = new Display(); 
    final Shell shell = new Shell(display); 
    shell.setLayout(new GridLayout(1, false)); 

    Table table = new Table(shell, SWT.BORDER | SWT.SINGLE | SWT.FULL_SELECTION); 
    table.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true)); 
    table.setLinesVisible(false); 
    new TableColumn(table, SWT.RIGHT); 
    new TableColumn(table, SWT.NONE); 

    for (int row = 0; row < 20; row++) 
    { 
     TableItem item = new TableItem(table, SWT.NONE); 
     item.setText(0, row + ""); 
     item.setText(1, "Item " + row); 
    } 

    for(int col = 0; col < table.getColumnCount(); col++) 
    { 
     table.getColumn(col).pack(); 
    } 

    shell.pack(); 
    shell.open(); 
    while (!shell.isDisposed()) 
    { 
     if (!display.readAndDispatch()) 
      display.sleep(); 
    } 
    display.dispose(); 
} 

是這樣的:

enter image description here

+0

這是一個非常聰明的解決辦法確實如此。我想我現在可以使用這個了。但是,如果SWT列表有一種顯示行號的方法,那將會非常有幫助。 謝謝Baz! – user2033666

+0

@ user2033666不客氣。如果您找到解決方案,請返回併發布。如果沒有,回來考慮接受我的回答:) – Baz