在xamarin.forms中刷新网页视图的最佳方法是什么

时间:2018-06-27 01:31:58

标签: webview xamarin.forms

我处理了如下的webview成功加载:

 void WebOnEndNavigating(object sender, WebNavigatedEventArgs e)
    {

        if (e.Result!=WebNavigationResult.Success)
        {
           //show message ... click on the button to retry

        }

    }
  

这是事件刷新按钮:

  void Refresh_Click(object Sender,EventArgs e)
    {
        webview.Source = (webview.Source as UrlWebViewSource).Url;
    }

当我连接到互联网时,单击刷新按钮,重新加载Webview成功,但是在WebOnEndNavigating eventHandler WebNavigationResult上失败 在Xamarin.Forms上重新加载Webview的正确方法是什么

0 个答案:

没有答案