The question says it all. Basically, I just want to know the alternative for this in WinRT:
Process.Start("http://www.google.com/");
|
The question says it all. Basically, I just want to know the alternative for this in WinRT:
|
|||
|
|
|
In WinRT, you can use Windows.System.Launcher.LaunchUriAsync to launch the default app associated with the specified URI. For a web link, the default browser would be used. http://msdn.microsoft.com/en-US/library/windows/apps/hh701480 |
|||
|
|
|
You can use
Both that methods has an optional second parameter of type |
|||||
|