本文介绍了[UWP] [C#] ActivateApplication适用于启动应用程序WACK测试的先决条件是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在另一篇文章中(https://social.msdn.microsoft.com/Forums/en-US/169399e6-b82e-476e-b929-2f3b4eb4f025/broken-links-in-windows-app-certification- kit-results?forum = wpdevelop)有这样的:

In another post (https://social.msdn.microsoft.com/Forums/en-US/169399e6-b82e-476e-b929-2f3b4eb4f025/broken-links-in-windows-app-certification-kit-results?forum=wpdevelop) there is this:

" Windows App认证密钥调用IApplicationActivationManager :: ActivateApplication来启动应用程序。 ...如果您的应用无法启动且您的测试平台满足ActivateApplication的先决条件,则可以排除故障..."从
我读到链接文章,没有列出的先决条件,只是接口方法功能的技术介绍。

"The Windows App Certification Key calls IApplicationActivationManager::ActivateApplication to launch apps. ... If your app fails to launch and your test platform satisfies the prerequisites of ActivateApplication, you can troubleshoot..." From my read of the linked article, there are NO listed prerequisites, merely the technical presentation of the function of the interface method.

应用程序没有实现IApplicationActivationManager(它仅由Windows调用)。关于对ActivateApplication的调用,有四个参数显然(和不透明地)由WACK提供。显然,名为
的应用程序无法访问ActivateApplication的返回值。

The IApplicationActivationManager is NOT implemented by the app (it is called by Windows only). Regarding the call to ActivateApplication, there are four parameters which are obviously (and opaquely) supplied by WACK. And obviously, the app being called does not have access to the return value from ActivateApplication.

那么,关于WACK调用ActivateApplication的信息有用吗?我们该怎么处理这些信息?具体而言,上面引用的帖子所说的先决条件是什么?

So, how is the information regarding WACK's call to ActivateApplication useful? What are we supposed to do with that information? What, specifically, are the prerequisites of which the post referenced above speaks?

推荐答案

我认为应该在该文档中提到ActivateApplication的先决条件:

I think the prerequisites of ActivateApplication should be mentioned in that document:

" 确保在测试中启用了UAC计算机。

"Make sure UAC is enabled on the test computer.

确保您在屏幕足够大的计算机上运行测试。 "

最好的问候,

Xavier Eoro


这篇关于[UWP] [C#] ActivateApplication适用于启动应用程序WACK测试的先决条件是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 08:05