Hello guys. I get data for tree from wcf by dto
How can i bind this object to TreeView. At your samples I've seen only through parentId. Your SL analogue of treeview work with such domains well.
                                [DataContract][Serializable] public class FileHandlerDTO{        [DataMember]        public int Id { get; set; }        [DataMember]        public string Name { get; set; }        [DataMember]        public string Description { get; set; }        [DataMember]        public List<FileHandlerDTO> Children;}