XAML:是否可以在WebView中显示当前URL?

时间:2017-01-29 14:21:08

标签: c# xaml webview uwp windows-10

我的UWP应用中有一个webview。默认情况下,webview不显示当前加载的内容URL。例如,在浏览器搜索字段中以某种方式显示网址是否可行?

例如,如果在Google视频中加载了Google,我想看到网址" https://www.google.de/?gws_rd=ssl"某处。

祝福

1 个答案:

答案 0 :(得分:2)

您可以在NavigationStarting事件的文本框中显示网址

void webView1_NavigationStarting(WebView sender, WebViewNavigationStartingEventArgs args)
{
    string url = "";
    try { url = args.Uri.ToString(); }
    finally
    {
        address.Text = url;
        appendLog(String.Format("Starting navigation to: \"{0}\".\n", url));
        pageIsLoading = true;
    }
}

https://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.webview.navigationstarting.aspx