Open.Core.Lists.ListTreeView.Back C# (CSharp) Method

Back() public method

Moves the selected node to the parent of the current node.
public Back ( ) : void
return void
        public void Back()
        {
            if (SelectedParent == null || SelectedParent.IsRoot) return;
            SelectedNode = SelectedParent.Parent;
        }