gpt4 book ai didi

java - SWT List 显示行号

转载 作者:行者123 更新时间:2023-12-02 06:57:47 25 4
gpt4 key购买 nike

如何在 SWT 列表上显示行号?我确实引用了一些关于显示 StyledText 行号的帖子,但它对我没有帮助。

提前致谢!

最佳答案

作为替代方案,您可以使用包含 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

关于java - SWT List 显示行号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17075858/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com