GoXam for WPF v3
ChildNodesPath Property
Northwoods.GoXam.Model Namespace > TreeModel<NodeType,NodeKey> Class : ChildNodesPath Property
Gets or sets a property path that that specifies how to get a list of keys for the "children" nodes of a node data object.
Syntax
public string ChildNodesPath {get; set;}

Property Value

This defaults to an empty string, meaning not to call FindChildNodeKeysForNode. Otherwise that method is called to try to find the list of children for each node. A null value may be used to indicate that there is no property path but that FindChildNodeKeysForNode should still be called because it has been overridden.
Remarks

This is used for model discovery. This is a declarative way to define the behavior of FindChildNodeKeysForNode for most cases.

The value of this property path applied to a node data object must be of type System.Collections.IEnumerable, holding only instances of NodeKey.

See Also

Reference

TreeModel<NodeType,NodeKey> Class
TreeModel<NodeType,NodeKey> Members