gpt4 book ai didi

c# - WPF 使用 VisualTreeHelper 垂直和水平查找元素

转载 作者:行者123 更新时间:2023-11-30 20:41:08 25 4
gpt4 key购买 nike

在可视化树中垂直和水平搜索最简单的方法是什么?

例如,我想从开始搜索的控件中找到一个不在父列表中的控件。

这是一个简单的示例(每个框代表一些 UI 控件):

Visual-Tree

例如,我从一个嵌套控件开始(Search-Start),然后想找到另一个嵌套控件(应该找到)。

最好的方法是什么?解析完整的可视化树好像不是很有效……谢谢!

最佳答案

没有水平搜索,class VisualTreeHelpers谁能帮你Navigate on a WPF’s Visual Tree .通过导航,您可以实现各种搜索。

这是最有效的方法,因为它是专门针对您的要求的 .Net 类。

对于实例:

// Search up the VisualTree to find DataGrid 
// containing specific Cell
var parent = VisualTreeHelpers.FindAncestor<DataGrid>(myDataGridCell);

// Search down the VisualTree to find a CheckBox
// in this DataGridCell
var child = VisualTreeHelpers.FindChild<CheckBox>(myDataGridCell);

// Search up the VisualTree to find a TextBox
// named SearchTextBox
var searchBox = VisualTreeHelpers.FindAncestor<TextBox>(myDataGridCell, "SeachTextBox");

// Search down the VisualTree to find a Label
// named MyCheckBoxLabel
var specificChild = VisualTreeHelpers.FindChild<Label>(myDataGridCell, "MyCheckBoxLabel");

关于c# - WPF 使用 VisualTreeHelper 垂直和水平查找元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32624832/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com