在UWP应用程序中,可以通过使用Launcher
类的LaunchUriAsync
方法来以最小化模式从外部web浏览器启动URI。
以下是实现的步骤:
Package.appxmanifest
文件中声明了internetClient
和privateNetworkClientServer
的权限。LaunchUriAsync
方法:using Windows.System;
Uri uri = new Uri("https://example.com");
bool success = await Launcher.LaunchUriAsync(uri, new LauncherOptions { TreatAsUntrusted = true, DisplayApplicationPicker = false });
在上述代码中,uri
是要启动的URI,可以替换为实际的URI。TreatAsUntrusted
属性设置为true
表示以最小化模式启动URI,DisplayApplicationPicker
属性设置为false
表示不显示应用程序选择器。
LaunchUriAsync
方法将返回true
,否则返回false
。可以根据返回值执行相应的操作。这种方式可以在UWP应用程序中以最小化模式从外部web浏览器启动URI,适用于需要在应用程序中打开外部链接的场景,例如点击应用程序中的某个按钮后跳转到网页。
腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云