/// <inheritdoc/>
        public override void InitIfNeeded(ISRIA sria)
        {
            base.InitIfNeeded(sria);

            if (Data == null)             // this will only be null at init. When scrollview's size changes, the data should remain the same
            {
                Data = new LazyList <TData>(NewModelCreator, 0);
            }
        }
Esempio n. 2
0
 public EnumerableLazyList(LazyList <T> lazyList)
 {
     _LazyList = lazyList;
 }