Open.Core.Lists.ListTreeView.Back C# (CSharp) 메소드

Back() 공개 메소드

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