/// <summary>
 /// Navigates the webview to the next page in the navigation history.
 /// </summary>
 public void GoForward()
 {
     if (_webView2WebView != null)
     {
         _webView2WebView.GoForward();
     }
 }