Example #1
0
 public IScrollControlBackend CreateHorizontalScrollControl()
 {
     if (horScroll == null)
     {
         horScroll = new ScrollControlBackend(ApplicationContext, scroll, false);
     }
     return(horScroll);
 }
Example #2
0
 public IScrollControlBackend CreateVerticalScrollControl()
 {
     if (vertScroll == null)
     {
         vertScroll = new ScrollControlBackend(ApplicationContext, scroll, true);
     }
     return(vertScroll);
 }