Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 PhotoChooserTask() 在我的 WindowsPhone 应用程序中加载图像。有没有办法将其更改为 EmbeddedResource ?
这是不可能的。
嵌入式资源包含在已编译、签名的二进制文件中。为此,您需要修改已编译的代码,然后使用受信任的证书对其进行签名。 由于平台的安全模型意味着只有作为市场认证过程的一部分签名的文件在手机上受信任才能使用,这意味着这绝对是不可能的。
当你说“我需要这样做”时——为什么? 如果您从其他地方(网络)获取文件,则无需将其保存为嵌入式资源即可在您的应用程序中使用它。