public CollectionElementProperty(ReflectedListProperty <TContainer, TValue, TElement> property, int index, IPropertyAttributeCollection attributes = null)
 {
     m_Property   = property;
     m_Attributes = attributes;
     m_Index      = index;
 }
Esempio n. 2
0
 public ReflectedPropertyAdapter(ReflectedListProperty arrayProperty, float fixedItemHeight = 0f)
 {
     this._arrayProperty  = arrayProperty;
     this.FixedItemHeight = fixedItemHeight;
 }
Esempio n. 3
0
 public EntityTreeView(ReflectedListProperty entityList, TreeViewState state, Action <ReflectedProperty> onSelectionChanged) : base(state)
 {
     this.onSelectionChanged = onSelectionChanged;//
     this.entityList         = entityList;
     Reload();
 }