0

我正在开发 WinRT C# 应用程序。我有一个网址说“ http://www.example.com/test.pdf ”。我可以使用winRT的本机pdf应用程序在应用程序中打开它吗?

4

1 回答 1

0

是的,Launcher.LanuchUriAsync会为你做这件事。您可以参考MSDN以获取更多信息,但以下内容应该可以解决问题:-

// The URI to launch
string uriToLaunch = @"http://www.example.com/test.pdf";
var uri = new Uri(uriToLaunch);

async void DefaultLaunch()
{
   // Launch the URI with a warning prompt
   var success = await Windows.System.Launcher.LaunchUriAsync(uri);    
}
于 2013-01-31T13:08:19.543 回答