Esempio n. 1
0
 private Widget CreateGoForwardButton()
 {
     return(new ToolbarButton(IconPool.GetTexture("Filesystem.ArrowRight"))
     {
         Clicked = () => view.GoForward(),
     });
 }
Esempio n. 2
0
 private Widget CreateGoForwardButton()
 {
     return(new ToolbarButton(IconPool.GetTexture("Filesystem.ArrowRight"))
     {
         Clicked = () => {
             view.ScrollView.SetFocus();
             view.GoForward();
         },
     });
 }