在遍历事件期间跳过小部件

Skip widget during traverse event

给定 Composite 内的三个 Text 小部件,根据图像,有没有办法在 SWT.Traverse 事件期间跳过其中一个?
第二个小部件应该只能通过鼠标单击或使用其他一些特殊快捷方式来聚焦。

拦截SWT.Traverse事件只能让我doit,或者不能。

对于选项卡遍历,您可以使用父 CompositesetTabList 方法来设置控件数组(这也允许您设置顺序)。

public void setTabList (Control [] tabList) 

Sets the tabbing order for the specified controls to match the order that they occur in the argument list.