public WindowComponent GetRowInstance(ListViewComponent view, int row)
 {
     return(this.GetInstance(row));
 }
 public int GetRowsCount(ListViewComponent view)
 {
     return(this.capacity);
 }
 public virtual float GetRowHeight(ListViewComponent view, int row)
 {
     return((this.specialSize != null) ? this.specialSize.rect.height : (this.source.transform as RectTransform).rect.height);
 }