I need help correcting the tabview tab header title and the Website Icon isn't showing up
Right now I seeing this
private void Neutron_NavigationCompleted(WebView sender, WebViewNavigationCompletedEventArgs args)
{
if (args.IsSuccess == true)
{
StatusTextBox.Text = " completed successfully.";
Tabs.Header = args.Uri.ToString();
}
else
{
StatusTextBox.Text = "Navigation to: " + args.Uri.ToString() +
" failed with error " + args.WebErrorStatus.ToString();
}
}
}
}