XPath-like query engine for Avalonia visual and logical trees. Supports patterns like: //Button, /Window/StackPanel/Button, //Button[@Name='Submit']
public class TreeXPath
kind:method, kind:property, kind:ctor. Press Esc to clear.TreeXPath(ILogical, Boolean)Creates a TreeXPath query engine for a logical root.TreeXPath(Visual)Creates a TreeXPath query engine for a visual root.Count(String)Counts nodes matching the XPath expression.Exists(String)Checks if any nodes match the XPath expression.Select(String)Selects nodes matching the XPath expression.Select<T>(String)Selects nodes matching the XPath expression, cast to the specified type.SelectFirst(String)Selects the first node matching the XPath expression.SelectFirst<T>(String)Selects the first node matching the XPath expression.