如何在 wpf/silverlight 的典型视图中设置选项卡导航?
我如何让选项卡按照我想要的顺序停止,跨用户控件包含的元素到视图中的本地元素,该视图是静态xaml,不组成(如棱镜),这是否涉及代码,或者我可以只在 xaml 中执行此操作吗?另外,如果您知道如何在混合中执行此操作,那将会非常有帮助。
How do i get the tabs to stop in the order I want across usercontrol contained elements to local elements in a view, the view is static xaml, not composed ( like with prism ), should this involve code, or can i do this in xaml only? also if you know how to do this in blend that would be very helpful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您希望 Tab 键保持在此容器内,则可以通过在容器上设置
TabNavigation="Local"
或"Cycle"
在 XAML 中执行此操作。然后调整子元素的TabOrder
和IsTabStop
属性来定义哪些控件将获得焦点以及以什么顺序获得焦点。You can do it in XAML by setting
TabNavigation="Local"
or"Cycle"
on the container if you want your tabbing to remain within this container. Then adjust theTabOrder
andIsTabStop
properties on child elements to define which controls will get focus and in what order.