控制Panel内的TabNavigation

时间:2010-02-08 14:10:44

标签: silverlight custom-controls

我正在使用Siverlight中的Panel进行布局控制。我希望能够在我的面板中设置Tab键行为。我需要的是像Control类的TabNavigation属性。例如,如果我设置:

myCustomPanel.TabNavigation = KeyboardNavigationMode.Cycle

tabbing只会通过myCustomPanel的children元素移动焦点。有没有办法做到这一点?

1 个答案:

答案 0 :(得分:0)

我知道,这是非常晚的答案,但对研究人员可能有帮助。

我有ParentCustomPanel,此面板包含许多ChildCustomPanel。 ChildCustomPanel有很多ControlsTextBoxCheckBox等...)。 我的问题是我将TabNavigation设置为ParentCustomPaneland它在ParentCustomPanel内工作。 现在我将TabNavigation设置为ParentCustomPanel,然后就可以了。

ParentCustomPanel.TabNavigation = KeyboardNavigationMode.Cycle

谢谢!