访问Win8 Metro风格应用程序中的其他进程

发布于 2024-12-10 09:18:38 字数 437 浏览 0 评论 0原文

我正在尝试构建一个 Windows 8“metro 风格”应用程序,它将作为“应用程序杀手”运行。对于那些使用过 Win8(技术预览版)的人来说,您会注意到,一旦打开 Metro 风格的应用程序,您就无法将其关闭(除非进入任务管理器并结束该进程)。

我的挑战是我无法从我的 Metro 风格应用程序访问“System.Diagnostics.Process”,我也不知道 WinRT 中是否有类似的替代方案。我还考虑过构建一个单独的应用程序来托管我的地铁应用程序与之交互的服务,但我想用一个应用程序来完成此操作。

从根本上说,我正在寻找一种模式来构建利用 .NET 4.0 组件的 Metro 风格应用程序,特别是能够枚举和终止 PC 上运行的其他进程。

澄清:与此特定应用程序相比,我更关心的是在 Metro 风格应用程序中访问该类型的 .NET 功能

谢谢

I am trying to build a Windows 8 "metro-style" app that will operate as a "app killer". For those of you who have used Win8 (Tech Preview) you'll notice that once you open a metro-style app you cannot close it (without going into Task Manager and ending the process).

My challenge is that I cannot access 'System.Diagnostics.Process' from my metro-style app, nor do I know if there is an comparable alternative within the WinRT. I also thought of building a separate app that hosts a service for my metro app to interface with, but I'd like to do this with a single app.

Fundamentally, I am looking for a pattern for building Metro-style apps that leverage .NET 4.0 components, specifically to be able to enumerate and kill other processes running on the PC.

CLARIFICATION: I am less concerned with this specific application than I am with access that type of .NET functionality within a Metro-style app

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

多像笑话 2024-12-17 09:18:38

对于您的具体问题,此功能不可用。应用程序不得与其他应用程序交互或干扰。

为了回答您更普遍的问题,与桌面应用程序可用的 API 相比,Metro 风格应用程序可用的 API 是有限的。 C# 有一个子集 可用的 .Net 库,就像 Silverlight 一样。对于 C++ 也是如此,其中 子集 可用。

To your specific question, this functionality is not available. Apps are not allowed to interact or interfere with other apps.

To answer your more general question, the APIs available to Metro style applications is limited compared to what is available to desktop applications. C# has a subset of the .Net library available, much like Silverlight does. The same is true for C++ where a subset of the desktop Win32/COM APIs are available.

十年不长 2024-12-17 09:18:38

据我了解(观看 Build2011 视频),Metro 应用程序将无法做到这一点...

进程之间的交互分别仅限于特定合同(右侧的魅力:搜索、发送到)。

想想手机,而不是台式机。

不过,您也许可以构建一个非 Metro Win8 应用程序。

From what I understand (watching Build2011 videos) a Metro App won't be able to do that...

Interaction between processes is severally limited to specific Contracts (the charms on the right: Search, Send-to).

Think Phone, not Desktop.

You might be able to build a non-Metro Win8 app though.

〆凄凉。 2024-12-17 09:18:38

不要在这上面浪费太多时间。我预计在测试版中将包含一个关闭选项(甚至可能是一个魅力)。在此之前请使用键盘 Alt-F4 或任务管理器

Don't waste too much time on this. I expect that in a beta a close option (perhaps even a charm) will be included. Until then use a keyboard Alt-F4 or the Task Manager

伤感在游骋 2024-12-17 09:18:38

C++:

Window::Current->CoreWindow->Close();

Window::Current->Close();

我还没有探索差异在这两者之间(更准确地说,我不知道 CoreWindowCurrent 有何不同。不过我可以假设...

我在我的 Windows 上使用带有 Win8 的 Oracle VBox Win7机器开发一个使用 VS 11 的 C++ Metro 应用程序。我使用了上述两种方法,在任务管理器中验证了该应用程序未在 Win8 和模拟器上运行。

C++:

Window::Current->CoreWindow->Close();

or

Window::Current->Close();

I haven't explored the difference between these two (more precisely, I don't know how CoreWindow differs from Current. I could assume though...

I'm using an Oracle VBox with Win8 on my Win7 machine to develop a C++ Metro App using VS 11. I used both of the above methods. I verified in Task Manager the app was not running on both Win8 and the Simulator.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文