我正在尝试从我的应用程序中打开其本机应用程序中的文件。
Windows.Storage.ApplicationData.current.localFolder.getFileAsync("downloads\\" + fileName).then(
function (file) {
var options = new Windows.System.LauncherOptions();
options.displayApplicationPicker = true;
options.desiredRemainingView = Windows.UI.ViewManagement.ViewSizePreference.useHalf;
Windows.System.Launcher.launchFileAsync(file, options).then(
function (success) {
if (success) {
//File launched
} else {
// File launch failed
}
});
});
我尝试使用LauncherOptions.DesiredRemainingView来确保每次启动都会有应用程序拆分屏幕(50/50),并且本机应用程序仍会以默认的大小打开。读者(50%),照片(70%)。
在Windows开发人员中心 - Windows应用商店应用中,有一个用于启动的示例,其中包含DesiredRemainingView的不同枚举,并且在构建下载的示例时没有任何枚举。
我还需要修改/设置其他选项(LauncherOptions)吗?