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