无法聚焦 SkinnableContainer 的子级
我有一个从 SkinnableContainer 扩展的自定义组件,并且只有两个 NumericSteppers。 我明确地将焦点设置到我的组件,例如 myComponent.setFocus()
。它将焦点设置到第一个步进器,这是正确的,但是当我按 TAB 将焦点移动到下一个步进器时,它将焦点移动到下一个组件。
我设置了组件的 tabEnabled = true
和 tabChildren=true
,仍然没有运气。 按 TAB 键时如何将焦点设置到下一个步进器?
I have a custom component extends from skinnableContainer and only has two NumericSteppers.
I explicitly set focus to my component like myComponent.setFocus()
. It sets focus to first stepper which is correct, but when I press TAB to move focus to next stepper it moves focus to the next Component.
I set tabEnabled = true
and tabChildren=true
of the component, still no luck.
How could I set focus to next stepper on pressing TAB?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保
focusEnabled< /code>
属性也设置为 true。您还可以以编程方式设置
每个选项卡的 tabIndex
属性。Make sure that the
focusEnabled
property is also set to true. You could also programatically set thetabIndex
property for each tab.