Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的应用程序中,我有一个 SWT 文本字段。我需要设置一个滚动值(在我的情况下将字段中的文本滚动到末尾)。我怎么能这样做?
在不移动光标位置的情况下,这应该具有所需的结果:
text.setTopIndex(text.getLineCount() - 1);
您需要将克拉设置到该位置,这将导致文本滚动到该位置。例如:
text.setSelection(text.getText().length());