Windows 8 Metro Style 应用程序:多应用程序包
我想使用 ToastNotificationManager::CreateToastNotifier(String appID)
从一个应用程序通过另一个应用程序引发 Toast 通知。
我知道只有当两个应用程序属于同一个多应用程序包时才可以。
对于以下问题:
- 什么是“多应用程序包”以及如何创建它?
- “多应用程序包”还可以容纳桌面应用程序,还是只能容纳 Metro 风格应用程序?
- 什么是 PRAID(包相关应用程序 ID)?从哪里可以获得它?
I want to raise a Toast Notification from one app via another, by using the ToastNotificationManager::CreateToastNotifier(String appID)
.
I've understood that it can be only when the two apps are belong to the same multi-app package.
And to the questions:
- What is "multi-app package" and how to create it?
- Is the "multi-app package" can hold also Desktop Application, or only Metro Style Apps?
- What is PRAID (Package Relative Applicatin ID), and from where I can get it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
1)多应用程序包是包含多个应用程序的包(即1个appx,多个磁贴/应用程序)
2) 不可以,它只能容纳 Metro 风格的应用程序
3)PRAID是清单中的应用程序ID。应用程序标签中的每个应用程序都可以有一个 ID,即它的 PRAID。
请注意,VS 不具备创建多应用程序包的工具。您必须通过将额外的应用程序和元素添加到应用程序清单中来手动执行此操作
1) A multi-app package is a package containing multiple applications (i.e. 1 appx, more than one tile/application)
2) No, it can only hold Metro style apps
3) PRAID is the application ID in the manifest. Each Application in the Applications tag can has an ID which is it's PRAID.
Note that VS isn't tooled to create multi-app packages. You'll have to do it manually by adding the extra applications and elements to the app manifest