public static void SetBringExpandedChildrenIntoView(UITreeListItem treeListItem, bool value)
 {
     treeListItem.SetValue(BringExpandedChildrenIntoViewProperty, value);
 }
 public static void SetBringSelectedItemIntoView(UITreeListItem treeListItem, bool value)
 {
     treeListItem.SetValue(BringSelectedItemIntoViewProperty, value);
 }
 public static bool GetBringExpandedChildrenIntoView(UITreeListItem treeListItem)
 {
     return((bool)treeListItem.GetValue(BringExpandedChildrenIntoViewProperty));
 }
 public static bool GetBringSelectedItemIntoView(UITreeListItem treeListItem)
 {
     return((bool)treeListItem.GetValue(BringSelectedItemIntoViewProperty));
 }