简体   繁体   English

以全屏模式从Windows 8.1应用程序启动URI

[英]Launching a URI from Windows 8.1 app in full screen mode

I'm trying to launch an app in full screen mode from URI from my Windows 8.1 app. 我正在尝试从Windows 8.1应用程序的URI以全屏模式启动应用程序。 But it keeps launching the app in half screen mode. 但是,它始终以半屏模式启动该应用程序。 I don't want to open other apps in half screen! 我不想半屏打开其他应用程序! Instead I want to launch an app in full screen. 相反,我想全屏启动一个应用程序。

I want other apps to take place of my app window. 我希望其他应用程序代替我的应用程序窗口。 Actually, I am navigating from one app to my another app. 实际上,我正在从一个应用程序导航到另一个应用程序。 Here is my code for launching another app: 这是我启动另一个应用程序的代码:

var appUri = new Uri("sm-calib://test");
await Windows.System.Launcher.LaunchUriAsync(appUri);

Here sm-calib is my other app protocol. 这里sm-calib是我的其他应用程序协议。

This is unfortunately impossible. 不幸的是,这是不可能的。 We do not control this parameter. 我们不控制此参数。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 在半屏模式C#Windows 8.1应用程序中从我的应用程序启动uri - launching a uri from my app in half screen mode C# windows 8.1 app 如何在Windows 8.1应用商店中退出媒体元素的全屏模式 - How to exit full screen mode for media element in windows 8.1 store app 全屏启动Windows 10中的Windows 8.1 Store App - Start windows 8.1 Store App in Windows 10 in full screen Windows Phone 8.1 App以全屏显示图像预览 - Windows Phone 8.1 App Displaying Image Preview in Full Screen 创建的Uri计划未启动应用Windows Phone - Created Uri Scheme not launching an app Windows Phone Uri Windows Phone 8.1的WriteableBitmap - WriteableBitmap from Uri Windows phone 8.1 从 Windows Phone 8.1 应用程序打开 LinkedIn 和 Twitter 应用程序的 Uri Scheme 是什么? - What is the Uri Scheme to open LinkedIn and Twitter App from an Windows Phone 8.1 App? Windows Mobile应用程序采用全屏模式 - Windows Mobile application in full-screen mode 使用URI关联为Windows Phone Universal 8.1自动启动应用程序 - Auto-launching apps using URI associations for Windows Phone Universal 8.1 如何在Windows Phone 8.1中显示全屏Modal ContentDialog - How to show a full screen Modal ContentDialog in Windows Phone 8.1
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM