public DemoTableSource(IRefreshDelegate scrollDelegate)
     : base(scrollDelegate)
 {
     _stuff = new string[] { "this", "that", "the other" };
 }
 public DemoScrollDelegate(IRefreshDelegate refreshDelegate)
     : base(refreshDelegate)
 {
 }
 public FGRefreshTableSource(IRefreshDelegate scrollDelegate)
 {
     _scrollDelegate = scrollDelegate;
 }
 public FGRefreshScrollDelegate(IRefreshDelegate scrollDelegate)
 {
     _scrollDelegate = scrollDelegate;
 }