Open.Core.Lists.ListTreeView.Back C# (CSharp) Méthode

Back() public méthode

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