WPF。如何通过元素的选项卡索引将焦点设置在元素上?
如果元素是 DataTemplate 的一部分并且元素的选项卡索引是唯一定义的,是否可以通过其选项卡索引获取元素或将焦点设置在该元素上(例如,文本框)?
Is it possible to get an element or set focus on it (TextBox, for instance) by it's tab index, if the element is a part of a DataTemplate and the tab index of the element is uniquely defined?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以VisualTreeHelper搜索任何元素通过模板创建。
因此,您可以检查任何现有元素的 TabIndex 并找到您想要的元素(如果您的选项卡索引确实是唯一的:)。您还可以在 DataTemplate 和名称过滤器中命名元素。
以下函数可让您查找可视化树的给定类型的所有元素。
按如下方式调用它:
其中
rootObject
是根对象,例如窗口或基本控件。您将获得所有文本框的列表,并且可以检查该列表的选项卡索引或您想要检查的任何属性。请注意,在调用此函数之前必须先构建树。另外,在某些情况下上述模式不起作用,例如列表中的 UI 虚拟化。
You can VisualTreeHelper for search any element that is created through templates.
Therefore you can check the TabIndex of any existing element and will find your desired element (it your tab-index is really unique:). You can also name your elments in the DataTemplate and the filter for the name.
The following function lets you find all elements of a given type of the visual tree.
Call it as follows:
Where
rootObject
is the root object such as your window or the base control. You will get a list of all textboxes and this list can the checked for the tab-index or whatever property you want to check.Take care that the tree must be built before calling this function. Als there are some circumstances in which the above pattern does not work, e.g. with UI-virtualization in lists.