WPF。如何通过元素的选项卡索引将焦点设置在元素上?

发布于 2024-10-18 04:52:08 字数 83 浏览 1 评论 0原文

如果元素是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

装纯掩盖桑 2024-10-25 04:52:08

您可以VisualTreeHelper搜索任何元素通过模板创建。
因此,您可以检查任何现有元素的 TabIndex 并找到您想要的元素(如果您的选项卡索引确实是唯一的:)。您还可以在 DataTemplate 和名称过滤器中命名元素。

以下函数可让您查找可视化树的给定类型的所有元素。

void FindChildFrameworkElementsOfType<T>(DependencyObject parent,IList<T> list) where T: FrameworkElement{             
    DependencyObject child; 
    for(int i=0;i< VisualTreeHelper.GetChildrenCount(parent);i++){             
        child = VisualTreeHelper.GetChild(parent, i); 
        if (child is T) { 
            list.Add((T)child); 
        } 
        FindChildFrameworkElementsOfType<T>(child,list); 
    } 
}

按如下方式调用它:

List<TextBox>  textBoxList=new List<TextBox>();
FindChildFrameworkElementsOfType<TextBox>(rootObject,textBoxList);

其中 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.

void FindChildFrameworkElementsOfType<T>(DependencyObject parent,IList<T> list) where T: FrameworkElement{             
    DependencyObject child; 
    for(int i=0;i< VisualTreeHelper.GetChildrenCount(parent);i++){             
        child = VisualTreeHelper.GetChild(parent, i); 
        if (child is T) { 
            list.Add((T)child); 
        } 
        FindChildFrameworkElementsOfType<T>(child,list); 
    } 
}

Call it as follows:

List<TextBox>  textBoxList=new List<TextBox>();
FindChildFrameworkElementsOfType<TextBox>(rootObject,textBoxList);

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文