Populating With Data RadTreeMap
RadTreeMap control expects a hierarchical collection and presents the data according to the TypeDefinitions set.
Assuming that you want to visualize a sample Windows Explorer structure - several folders with their containing files in RadTreeMap you can follow this approach:
Create new interface that will represent the basic information for the files/folders:
The Children collection can be substituted with any source that implements one of the following interfaces:
IEnumerable - supports simple iteration of a collection. See the MSDN article for more on IEnumerable.
ICollection - extends IEnumerable and supports size, enumerator, and synchronization methods for collections.
IList - extends ICollection and is the base class for lists.
Add two new classes -> File and Folder that implement the above interface:
In XAML add two TypeDefinitions using the TypeDefinitions collection - one for the File and one for the Folder. The ValuePath property specifies from where the data for the values should be taken. You may also control the Labels that are to be displayed for each tile using the LabelPath property. Note how the ChildrenPath property specifies the children of the Folder TypeDefinition:
Here is a sample datasource:
The result is shown below: