Hello, I would like to add a node to the TreeView of the FileExplorer, and I was trying to do this in the Page_Load handler:
RadFileExplorer1.TreeView.Nodes.Add(
new
RadTreeNode(
"Recycle bin"
));
But this causes my "Recycle Bin" node to be the only one in the TreeView. Is there a better way to do this? I would prefer that this node would be at or above the root node, so that it could be used as a recycle bin where users could drag files to.