我可以将图像作为数据 URI 嵌入到 Windows 8/10 toast 通知中吗?

May I embed images as data URI with Windows 8/10 toast notifications?

我正在尝试编写一个在 Windows 8 和更高版本上提供 toast 通知的应用程序。

是否可以不引用本地磁盘上的图像文件而是使用数据 URI,以便通过传递给 toast 的 XML 显示图像?到目前为止,我无法提出任何文档,而且我仍处于我的项目的研究阶段(因此还没有 "simply" 尝试的代码)。

没有。 toasts(或磁贴)中的图像不支持 DataUris

Update/documentation/proof:

对于8
来自 https://msdn.microsoft.com/en-us/library/windows/apps/hh761494.aspx

In this set of templates, the image element is expressed using one of these protocols:
•http:// or https:// A web-based image.
•ms-appx:/// An image included in the app package.
•ms-appdata:///local/ An image saved to local storage.
•file:/// A local image. (Only supported for desktop apps.)

10
来自 https://msdn.microsoft.com/en-us/library/windows/apps/br230844.aspx

The URI of the image source, using one of these protocol handlers:
•http:// or https:// A web-based image.
•ms-appx:/// An image included in the app package.
•ms-appdata:///local/ An image saved to local storage.
•file:/// A local image. (Supported only for desktop apps. This protocol cannot be used by Windows Store apps.)

奖金,在 WP 8.X 你甚至不能指定图像,它只是使用应用程序图标。