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.
我正在一个屏幕上工作,我将某些 10 个字段(垂直字段管理器中的水平字段管理器)列为 10 行。我想在第 4 行加载屏幕后设置 ui 的焦点。
我们如何做到这一点,以便当用户打开应用程序焦点在 4 行时。
谢谢
这是相当古老的,但我不知道为什么没有人回答它。这很简单。如果您有自定义元素,setFocus() 可能会抛出一些错误,但将其转换为字段或使用 getField 索引将允许您调用 setFocus()。
字段 f = this.getField(2); f.setFocus();