I have a Metro application using a WebView control. I use NavigateToString
to load an html file that may contain hyperlinks. What I want to do then is to detect when one of these hyperlinks is selected, and instead of allowing navigation in the WebView control, launch IE and view the page there.
Is this possible within the limits of WinRT, and if so, how?
So far I have tried to capture the WebView_LoadCompleted()
event, but although it fires at the right time, I do not see any details about the URI from NavigationEventArgs
.
source share