Sfoglia il codice sorgente

Made DynamicTreeView Data property public

Frank van den Bos 2 anni fa
parent
commit
a2c094309c
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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;