浏览代码

Made DynamicTreeView Data property public

Frank van den Bos 2 年之前
父节点
当前提交
a2c094309c
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      inabox.wpf/DynamicGrid/DynamicTreeView.cs

+ 1 - 1
inabox.wpf/DynamicGrid/DynamicTreeView.cs

@@ -152,7 +152,7 @@ namespace InABox.DynamicGrid
         protected abstract Expression<Func<T, Guid>> ParentID { get; }
         protected abstract Expression<Func<T, String>> Description { get; }
 
-        protected CoreTable Data { get; private set; }
+        public CoreTable Data { get; private set; }
 
         private ContextMenu _menu;
         private SfTreeGrid _tree;