IsChildListForACollapsedParent() 공개 정적인 메소드

public static IsChildListForACollapsedParent ( List childList ) : bool
childList List
리턴 bool
예제 #1
0
 private static void SetChildren(TreeViewItem item, List <TreeViewItem> newChildList)
 {
     if (LazyTreeViewDataSource.IsChildListForACollapsedParent(item.children) && newChildList == null)
     {
         return;
     }
     item.children = newChildList;
 }