我试图Text
在附加字符串后将 SWT 的光标位置设置到末尾。我知道更改 SWT 的光标位置StyledText
,但不确定 SWT Text
。如果你们遇到了这个挑战并找到了解决方案,请分享它。
问问题
10832 次
1 回答
20
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 回答