public static bool GetIsSynchronizedWithCurrentItem(TreeListControl treeList)
 {
     return((bool)treeList.GetValue(IsSynchronizedWithCurrentItemProperty));
 }
 public static ICollectionView GetCollectionView(TreeListControl treeList)
 {
     return((ICollectionView)treeList.GetValue(CollectionViewProperty));
 }
 public static TreeListControlDataModel GetTreeListControlDataModel(TreeListControl treeList)
 {
     return((TreeListControlDataModel)treeList.GetValue(TreeListControlDataModelProperty));
 }