8

我试图Text在附加字符串后将 SWT 的光标位置设置到末尾。我知道更改 SWT 的光标位置StyledText,但不确定 SWT Text。如果你们遇到了这个挑战并找到了解决方案,请分享它。

4

1 回答 1

20

看看Text#setSelection(int)

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

    Text text = new Text(shell, SWT.BORDER);

    text.setText("Some random text here...");

    text.setSelection(text.getText().length());


    shell.pack();
    shell.open();
    while (!shell.isDisposed())
        while (!d.readAndDispatch())
            d.sleep();
}

这会将光标设置到末尾。

于 2012-12-26T10:56:56.200 回答