示例#1
0
 public void GoForward()
 {
     if (CanGoForward)
     {
         WebViewControlDelegate.NavigateThroughStack(this, true);
     }
 }
示例#2
0
 public void GoBack()
 {
     if (CanGoBack)
     {
         WebViewControlDelegate.NavigateThroughStack(this, false);
     }
 }